IOS保存多张图片 多线程处理

保存多张图片的时候,既要控制不丢图片,又要控制图片可以多线程。提高保存速度,防止程序崩溃,防止用户等待时间过久

这里我们可以使用Photos框架的PHPhotoLibrary类,这个可以帮助你多线程保存图片

-(void)saveBtn
{
      [SSGOTools againRequestPhotoWithblock:^(BOOL isAgree) {             
                if (isAgree) {                  
                    //确认开启权限
                    self.listOfImages = [NSMutableArray new];
                    int photoNum ;
                    photoNum = (int)_photoArray.count;
                    if (_photoArray.count > 9) {
                        photoNum = 9;
                    }
                    for (int i = 0; i < photoNum; i++) {
                        NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:_photoArray[i]]];
                        UIImage *myImage = [UIImage imageWithData:data];
                        //[self.listOfImages addObject:myImage];
                        [self loadImageFinished:myImage];
                       
                        }
                }            
            }];
}
- (void)loadImageFinished:(UIImage *)image
{
    [[PHPhotoLibrary sharedPhotoLibrary] performChanges:^{
        
        //写入图片到相册
        
        [PHAssetChangeRequest creationRequestForAssetFromImage:image];
       
    } completionHandler:^(BOOL success, NSError * _Nullable error) {
        
        NSLog(@"success = %d, error = %@", success, error);
        if(success){
            dispatch_async(dispatch_get_main_queue(), ^{
                [SSGOTools showInfoPopHint:@"保存成功"];
            });
        }
    }];
}
特别注意,自己封装的提示框,会无法显示,因为在异步线程中,需要返回主线程来。进行UI的更新。试试效果吧~

猜你喜欢

转载自blog.csdn.net/lee727n/article/details/80775190
今日推荐