我正在使用HealthKit从我的iOS设备上读取步骤数据。
这是我的代码:
if ([HKHealthStore isHealthDataAvailable]) {
__block double stepsCount = 0.0;
self.healthStore = [[HKHealthStore alloc] init];
NSSet *stepsType =[NSSet setWithObject:[HKObjectType quantityTypeForIdentifier:HKQuantityTypeIdentifierStepCount]];
[self.healthStore requestAuthorizationToShareTypes:nil readTypes:stepsType completion:^(BOOL success, NSError * _Nullable error) {
if (success) {
HKSampleType *sampleType = [HKSampleType quantityTypeForIdentifier:HKQuantityTypeIdentifierStepCount];
HKSampleQuery *sampleQuery = [[HKSampleQuery alloc] initWithSampleType:sampleType predicate:nil limit:HKObjectQueryNoLimit sortDescriptors:nil resultsHandler:^(HKSampleQuery *query, NSArray *results, NSError *error) {
if (error != nil) {
NSLog(@"results: %lu", (unsigned long)[results count]);
for (HKQuantitySample *result in results) {
stepsCount += [result.quantity doubleValueForUnit:[HKUnit countUnit]];
}
NSLog(@"Steps Count: %f", stepsCount);
} else {
NSLog(@"error:%@", error);
}];
[self.healthStore executeQuery:sampleQuery];
[self.healthStore stopQuery:sampleQuery];
NSLog(@"steps:%f",stepsCount);
}
}];
}
我在iPhone6上构建并运行代码,该iPhone6具有步骤数据并且在设置中 - >隐私 - >健康,应用程序确实已被允许读取数据,但日志区域仅显示:
steps:0.000000
我在for循环和NSLog(@"error:%@", error)
上设置了一个断点,但应用程序没有中断。
有人可以帮忙吗?
答案 0 :(得分:2)
尝试此代码,只需更改开始日期和结束日期。
-(void) getQuantityResult
{
NSInteger limit = 0;
NSPredicate *predicate = [HKQuery predicateForSamplesWithStartDate:currentDate endDate:[[NSDate date]dateByAddingTimeInterval:60*60*24*3] options:HKQueryOptionStrictStartDate];
NSString *endKey = HKSampleSortIdentifierEndDate;
NSSortDescriptor *endDate = [NSSortDescriptor sortDescriptorWithKey: endKey ascending: NO];
HKSampleQuery *query = [[HKSampleQuery alloc] initWithSampleType[HKQuantityType quantityTypeForIdentifier:HKQuantityTypeIdentifierStepCount]
predicate: predicate
limit: limit
sortDescriptors: @[endDate]
resultsHandler:^(HKSampleQuery *query, NSArray* results, NSError *error){
dispatch_async(dispatch_get_main_queue(), ^{
// sends the data using HTTP
int dailyAVG = 0;
for(HKQuantitySample *samples in results)
{
dailyAVG += [[samples quantity] doubleValueForUnit:[HKUnit countUnit]];
}
lblPrint.text = [NSString stringWithFormat:@"%d",dailyAVG];
NSLog(@"%@",lblPrint.text);
NSLog(@"%@",@"Done");
});
}];
[self.healthStore executeQuery:query];
}
答案 1 :(得分:1)
您的代码在有机会运行之前立即停止查询。对于此查询,除非您想在查询完成之前取消查询,否则没有理由完全调用stopQuery:
。由于查询不是很长时间(它没有updateHandler
),因此在调用resultsHandler
后它会立即停止。
第二个问题是您的代码尝试过早记录步数。查询以异步方式运行,一旦查询完成,将在后台线程上调用resultsHandler
。我建议在块中记录stepsCount
。
最后,如果您想要计算用户的步数,您应该HKStatisticsQuery
而不是对HKSampleQuery
的结果求和。当HealthKit中存在多个重叠数据源时,HKStatisticsQuery
会更有效并且会产生正确的结果。例如,如果用户同时拥有iPhone和Apple Watch,那么您当前的实施将重复计算用户的步骤。