如何按小时分组HKStatistics?

时间:2014-10-10 12:12:28

标签: ios ios8 health-kit hksamplequery

我正在尝试从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的实施方式。

1 个答案:

答案 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];

您可以在HKStatisticsCollectionQuery docs

中阅读更多详情