IOS拍照---》保存到相册----》并且获取照片的ALasset传到相册

场景:本身想把IOS拍照和相册选照片功能集成到一起,就是把拍照的相片和选相册的相片放到一个collection中,然后上传,并且拍照的照片默认在相册选照片时是选中状态的,所以需要获取拍照的照片ALasset然后传到相册中去,

问题但是获取了相册的Alasset后,在往相册方法传时一直是空,可能是assetURL方法异步的问题,但后来晚上搜罗了下才发现之前写的方法有问题:

-(void)imagePickerController:(UIImagePickerController*)picker didFinishPickingMediaWithInfo:(NSDictionary *)info

{

    NSString *type = [info objectForKey:UIImagePickerControllerMediaType];

    if ([type isEqualToString:@"public.image"])

    {

        //先把图片转成NSData

        UIImage* image = [info objectForKey:@"UIImagePickerControllerOriginalImage"];

     ALAssetsLibrary *library  = [[ALAssetsLibrary alloc] init];

        [library writeImageToSavedPhotosAlbum:[image CGImage] orientation:(ALAssetOrientation)[image imageOrientation] completionBlock:^(NSURL *assetURL, NSError *error){

            if (error) {

                // TODO: error handling

            } else {

                [library  assetForURL:assetURL resultBlock:^(ALAsset *asset) {

                    [self.selectPhotos addObject:asset];

                    [_imageCollection reloadData];

                } failureBlock:^(NSError *error) {

                    

                }];

            }

        }];

    }

}

问题就出现在ALAssetsLibrary *library  = [[ALAssetsLibrary alloc] init]; 这个类的声明上,

这个东东要作为公共的类进行声明,然后问题解决,具体原因不详,还请大牛多多指点。



评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值