我正在尝试从HealthKit中提取步骤数据。
我想创建按小时分组的步骤数据摘要。目前,我可以在NSPredicate
提供的日期范围与HKSampleQuery
之间提取所有数据样本。我还可以得到日期范围与HKStatisticsQuery
之间的步数总和。
我要问的是,是否有办法按小时对样本或统计数据进行分组。在SQL中我会写这样的东西:
SELECT HOUR(date), SUM(steps) FROM healthkit WHERE date BETWEEN 'blah' AND 'blah' GROUP BY 1;
我是否真的需要24小时31次查询HKStatistics来编写按小时分组的最后一个步骤数据?因为这似乎效率很低,尤其是resultsHandler
的实施方式。
答案 0 :(得分:9)
您应该使用HKStatisticsCollectionQuery
,您可以按时间间隔执行分组。一个示例存根代码是:
NSDate *startDate, *endDate, *anchorDate; // Whatever you need in your case
HKQuantityType *type = [HKObjectType quantityTypeForIdentifier:HKQuantityTypeIdentifierStepCount];
// Your interval: sum by hour
NSDateComponents *intervalComponents = [[NSDateComponents alloc] init];
intervalComponents.hour = 1;
// Example predicate
NSPredicate *predicate = [HKQuery predicateForSamplesWithStartDate:fromDate endDate:toDate options:HKQueryOptionStrictStartDate];
HKStatisticsCollectionQuery *query = [[HKStatisticsCollectionQuery alloc] initWithQuantityType:type quantitySamplePredicate:predicate options:HKStatisticsOptionCumulativeSum anchorDate:anchorDate intervalComponents:intervalComponents];
query.initialResultsHandler = ^(HKStatisticsCollectionQuery *query, HKStatisticsCollection *result, NSError *error) {
// do something with the results
};
[healthStore executeQuery:query];
中阅读更多详情