我想在没有 iPhone 开发者帐户的情况下在 iOS 模拟器中测试 HealthKit 应用。我添加了一个启用了 com.apple.developer.healthkit 功能的授权文件,当我构建应用程序时,它似乎将文件包含在包中,但是当我尝试访问 HealthKit API 时,模拟器会抛出此错误:
Error Domain=com.apple.healthkit
Code=4 "Missing com.apple.developer.healthkit entitlement."
UserInfo=0x7fc939f091c0
{NSLocalizedDescription=Missing com.apple.developer.healthkit entitlement.}
是否有任何选项可以在没有开发者帐户的情况下在 iOS 模拟器中试用 HealthKit?
Best Answer-推荐答案 strong>
您需要将授权添加到项目中。
转到项目设置>>功能
向下滚动列表到 HealthKit 并打开它ON
如果您在真实设备上进行测试,那么您还需要从您的苹果开发者帐户中为该特定 appID 添加该权利,并更新配置文件并重新下载。
关于ios - 在没有开发者帐户的情况下使用 iOS 模拟器试用 HealthKit,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/26434322/
|