解决关于ios访问相机闪退问题_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 解决关于ios访问相机闪退问题

解决关于ios访问相机闪退问题

 2017/8/10 19:31:23  huangenai  程序员俱乐部  我要评论(0)
  • 摘要:在mac上的ionic3项目打包成苹果app,系统版本是10.3.3.当调用相机的时候出现闪退情况,这是调试出现的问题:Thisapphascrashedbecauseitattemptedtoaccessprivacy-sensitivedatawithoutausagedescription.Theapp'sInfo
  • 标签:解决 iOS 问题

在mac上的ionic3项目打包成苹果app,系统版本是10.3.3 .

当调用相机的时候出现闪退情况,这是调试出现的问题:

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.

解决方案:

使用xcode 打开xxx.pbxproj

打开Info.plist直接添加

 

或者直接添加

 

<key>NSCameraUsageDescription</key>
<string>cameraDesciption</string>

加上上面这个 就不会出现app在调用相机的时候出现崩溃的问题了。

上一篇: 不为人知的云端“秘恋” 下一篇: 没有下一篇了!
发表评论
用户名: 匿名