NSHealthShareUsageDescription 必须在应用程序的 Info.plist 中设置才能请求读取授权

Posted

技术标签:

【中文标题】NSHealthShareUsageDescription 必须在应用程序的 Info.plist 中设置才能请求读取授权【英文标题】:NSHealthShareUsageDescription must be set in the app's Info.plist in order to request read authorization 【发布时间】:2016-09-20 14:20:27 【问题描述】:

我有一个使用

的框架
_healthStore requestAuthorizationToShareTypes:writeTypes readTypes:readTypes completion:^(BOOL success, NSError *error) 

当我将框架包含到我的 ios 应用中并将以下内容放入我的应用 info.plist 文件中时

<key>NSHealthShareUsageDescription</key>
<string>Read heart rate monitor data.</string>
<key>NSHealthUpdateUsageDescription</key>
<string>Share workout data with other apps.</string>

一切正常 - 不包括这些键会导致以下错误:

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'NSHealthShareUsageDescription must be set in the app's Info.plist in order to request read authorization.'

我的问题是,在为框架运行单元测试时,它会因上述错误而崩溃。我已将密钥放在框架和测试目标的所有 info.plist 文件中,但仍然会崩溃。

为了运行测试目标,密钥应该进入哪个 plist 文件?

(还应该提到我正在切换到 Swift3 - 这是 Objective-C 项目的一部分 - 在 iOS10 和 XCode 8 之前,这一切都很好)。

我创建了一个带有适当单元测试的框架来显示问题:https://github.com/asensei/HKHealthStoreFrameworkUnitTestBug

【问题讨论】:

【参考方案1】:

您必须将 NSHealthShareUsageDescription 和 NSHealthUpdateUsageDescription 键添加到应用程序的 Info.plist 文件中。你这样做:

    点击“Info.plist”文件

    右键单击屏幕并选择添加行。

    滚动到“隐私 - 健康共享..”和“隐私 - 健康更新..”

    选择这两个,你应该很好。

【讨论】:

嘿,我只是在string 中说明需要这些的原因吗?【参考方案2】:

您必须添加两个描述NSHealthUpdateUsageDescriptionNSHealthShareUsageDescription,然后给每个描述一个描述。请看下面的截图。

【讨论】:

以上是关于NSHealthShareUsageDescription 必须在应用程序的 Info.plist 中设置才能请求读取授权的主要内容,如果未能解决你的问题,请参考以下文章