如果在app中調(diào)用了蘋(píng)果健康,iOS10中會(huì)出現(xiàn)閃退。
報(bào)錯(cuò)為:
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'NSHealthUpdateUsageDescription must be set in the app's Info.plist in order to request write authorization.'
這是因?yàn)閕nfo.plist文件中聲明蘋(píng)果健康的使用權(quán)限,所以要在info.plist中添加以下key。
請(qǐng)求寫(xiě)入
<key>NSHealthUpdateUsageDescription</key><string>some string value stating the reason</string>
請(qǐng)求讀取
<key>NSHealthShareUsageDescription</key> <string>some string value stating the reason</string>

530099-eeb093bef60afa52.png