首页 > 代码库 > iOS 10 因苹果健康导致闪退 crash
iOS 10 因苹果健康导致闪退 crash
如果在app中调用了苹果健康,iOS10中会出现闪退。
控制台报出的原因是:
Terminating app due to uncaught exception ‘NSInvalidArgumentException‘, reason: ‘NSHealthUpdateUsageDescription must be set in the app‘s Info.plist in order to request write authorization.‘
这是因为我们要在info.plist文件中声明苹果健康的使用权限,所以在info.plist中添加以下key就可以了。
请求写入
<key>NSHealthUpdateUsageDescription</key><string>some string value stating the reason</string>
请求读取
<key>NSHealthShareUsageDescription</key> <string>some string value stating the reason</string>
Paste_Image.png
相关问题
另外iOS 10 其他权限相对应的key 如下:
相机权限描述:
<key>NSCameraUsageDescription</key> <string>cameraDesciption</string>
通信录:
<key>NSContactsUsageDescription</key> <string>contactsDesciption</string>
麦克风:
<key>NSMicrophoneUsageDescription</key> <string>microphoneDesciption</string>
相机:
<key>NSPhotoLibraryUsageDescription</key> <string>photoLibraryDesciption</string>
iOS 10 因苹果健康导致闪退 crash
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。