首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

iOS截屏(视频黑色)并保存到自定义相册(3)

iOS截屏(视频黑色)并保存到自定义相册(3)

3.保存到系统相册

    //    UIImageWriteToSavedPhotosAlbum(image, self, @selector(image:didFinishSavingWithError:contextInfo,nil);//保存到系统相册
    //-  (void)imageUIImage *)image didFinishSavingWithErrorNSError *)error contextInfovoid *)contextInfo {
    //    if (error == nil) {
    //        NSLog(@"保存成功");
    //        [QYprogressHUD showSuccessWithStatus"截图以保存到相册"];
    //    } else {
    //        NSLog(@"失败");
    //        [QYprogressHUD showErrorWithStatus"截图失败"];
    //    }
    //}

4.知识点补充
4.1首次判断相册权限

     
    PHAuthorizationStatus status = [PHPhotoLibrary authorizationStatus];
        if (status == PHAuthorizationStatusNotDetermined) {
            [PHPhotoLibrary requestAuthorization:^(PHAuthorizationStatus status) {
                if (status == PHAuthorizationStatusAuthorized) {//同意
                    [weakSelf canSaveImg:image];
                    return ;
     
                }else
                {
                    [QYprogressHUD showInfoWithStatus"未获得相册权限,截屏保存失败"];
                    return ;
                }
            }];
        }
返回列表