热门标签 | HotTags
当前位置:  开发笔记 > 后端 > 正文

ios10访问相机,照片crash问题

iOS10升级后,坑还是挺多的,之前写的项目中照片访问就crash掉了Thisapphascrashedbecauseitattemptedtoaccesspriv

 iOS 10 升级后,坑还是挺多的,之前写的项目中照片访问就crash掉了

This app has crashed because it attempted to access privacy-sensitive data without a usage description.  The app's Info.plist must contain an NSPhotoLibraryUsageDescription key with a string value explaining to the user how the app uses this data.

解决问题是你需要在 info.plist 文件添加一个 NSPhotoLibraryUsageDescription的 key,然后添加一个描述。

下面是我对相册和相机添加的两条描述



下面是其他关于隐私添加有关权限问题的key

相机:NSCameraUsageDescription
cameraDesciption
联系人:NSContactsUsageDescription
contactsDesciption
麦克风:NSMicrophoneUsageDescription
microphoneDesciption
相册:NSPhotoLibraryUsageDescription
photoLibraryDesciption
其中这个string值可以随意写


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