热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

当用户在UIImagePickerController中拒绝移动和缩放后对照片的权限时,iOS应用程序崩溃

如何解决《当用户在UIImagePickerController中拒绝移动和缩放后对照片的权限时,iOS应用程序崩溃》经验,应该怎么弄,您有好建议吗?

我正在使用默认的UIImagePickerController,并将allowsEditing设置为YES来拍摄照片.当用户移动并缩放照片时,操作系统会要求访问"照片".如果用户拒绝访问,应用程序将崩溃.

- (void)openCamera
{
    UIImagePickerController *imagePickerCOntroller= [[UIImagePickerController alloc] init];
    imagePickerController.editing = YES;
    imagePickerController.allowsEditing = YES;
    imagePickerController.sourceType = UIImagePickerControllerSourceTypeCamera;
    imagePickerController.delegate = self;
    [self presentViewController:imagePickerController animated:YES completion:nil];
}

和UIImagePickerControllerDelegate方法一样

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

    UIImage *image = info[UIImagePickerControllerEditedImage];
    if (!image) {
        image = info[UIImagePickerControllerOriginalImage];
    }

    self.profileImage = image;

    [picker dismissViewControllerAnimated:YES completion:nil];
}

崩溃消息:

*** This application is not allowed to access Photo data.

我想知道为什么它应该首先要求访问照片.有什么想法吗?


推荐阅读
author-avatar
噯嘅坟墓_996
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有