iOS 10 相机等崩溃

来源:互联网 发布:网络视频存储方案 编辑:程序博客网 时间:2024/06/06 03:27

文/某个胖子(简书作者)
原文链接:http://www.jianshu.com/p/ec15dadd38f3
著作权归作者所有,转载请联系作者获得授权,并标注“简书作者”。

iOS10闪退 崩溃1:

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.

意思是说:你需要在info.plist文件 添加一个“NSContactsUsageDescription ”的Key,Value添加一个描述。

需要在应用的info.plist里加入(使用source code模式):

<key>NSCameraUsageDescription</key>    <string>cameraDesciption</string><key>NSContactsUsageDescription</key><string>contactsDesciption</string><key>NSMicrophoneUsageDescription</key><string>microphoneDesciption</string><key>NSPhotoLibraryUsageDescription</key><string>photoLibraryDesciption</string>
0 0
原创粉丝点击