作者:赵顺帆_705 | 来源:互联网 | 2023-05-21 13:58
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值可以随意写