HKSampleType *stepType = [HKQuantityType quantityTypeForIdentifier:HKQuantityTypeIdentifierStepCount];
当我想要这些步骤时,它可以工作;
我想要 DistanceWalkingRunning 或 ExerciseTime ,xcode 显示下一条消息。
Error Domain=com.apple.healthkit Code=5 “Authorization not determined
UserInfo={NSLocalizedDescription=Authorization not determined}”
HKSampleType *walkingType = [HKQuantityType quantityTypeForIdentifier:
HKQuantityTypeIdentifierAppleExerciseTime];
请有人帮助我。
谢谢。
Best Answer-推荐答案 strong>
HKObjectType *stepType = [HKObjectType quantityTypeForIdentifier:HKQuantityTypeIdentifierDistanceWalkingRunning];
NSSet *healthSet = [NSSet setWithObjects:stepType,nil];
太尴尬了!只需获得步数的授权,无需距离。
关于ios - 错误域=com.apple.healthkit 代码=5,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/45235317/
|