iOS10 plist文件常用key值

来源:互联网 发布:mac能用的绘画软件 编辑:程序博客网 时间:2024/06/08 00:45

iOS10 plist文件常用key值 : xoxo_x著


这里写图片描述


在iOS10 开发真机测试中使用camera 或 recoder时 经常报错:

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

这是因为plist文件缺少key值:

常用key值如下:

    <key>NSPhotoLibraryUsageDescription</key>    <string>此 App 需要您的同意才能读取媒体资料库</string>    <key>NSCameraUsageDescription</key>    <string>cameraDesciption</string>    <key>NSContactsUsageDescription</key>    <string>contactsDesciption</string>    <key>NSMicrophoneUsageDescription</key>    <string>microphoneDesciption</string>
0 0