将Health Kit数据访问Apple Watch OS 2(不包括锻炼数据)

时间:2015-08-13 13:44:16

标签: ios iphone watch-os-2 health-kit hksamplequery

我可以使用锻炼课程访问锻炼数据,但无法与其他人一起使用,例如访问身高,体重,饮食水,体温,血压等。

此外,我能够访问心率,但无法访问体温。它们都是相同的生命体征标识符。

是否手表只能访问WWDC 2015视频中提到的锻炼数据?

enter image description here

示例代码:

-(void)bodyTempForLabel :(WKInterfaceLabel *)bodyTempLabel {

    HKSampleType *bodyTemp = [HKQuantityType quantityTypeForIdentifier:HKQuantityTypeIdentifierBodyTemperature];

    [self readMostRecentSampleType:bodyTemp withCompletion:^(HKQuantitySample *quantitySample, NSError *error) {

        if(error) {

            NSLog(@"Error Reading Weight From health Kit");
        }

        self.bodyTemp = quantitySample;

        double bodyTempinDegree = [[self.bodyTemp quantity] doubleValueForUnit:[HKUnit unitFromString:[NSString stringWithFormat:@"%@C", @"\u00B0"]]];

        dispatch_async(dispatch_get_main_queue(), ^{

            [bodyTempLabel setText:[NSString stringWithFormat:@"%f",bodyTempinDegree]];
        });

    }];
}

-(void)readMostRecentSampleType : (HKSampleType *)sampleType withCompletion:(void(^)(HKQuantitySample *quantitySample,NSError *error))recentSample {

    NSSortDescriptor *sortDescriptor = [NSSortDescriptor sortDescriptorWithKey:HKSampleSortIdentifierEndDate ascending:NO];

    HKQuery *sampleQuery = [[HKSampleQuery alloc] initWithSampleType:sampleType predicate:nil limit:HKObjectQueryNoLimit sortDescriptors:@[sortDescriptor] resultsHandler:^(HKSampleQuery * _Nonnull query, NSArray<__kindof HKSample *> * _Nullable results, NSError * _Nullable error) {

        if(!error) {
            // No results retuned array empty
           HKQuantitySample *mostRecentSample = results.firstObject;

            recentSample(mostRecentSample,error);
        }

    }];

    [_healthStore executeQuery:sampleQuery];

}

任何帮助将不胜感激。感谢!!!

2 个答案:

答案 0 :(得分:1)

您似乎需要使用真实设备进行调试。我在运行模拟器时无法从HK获得任何价值,但它在Apple Watch中运行良好。 (使用XCode 7 Beta 5)。

答案 1 :(得分:0)

Apple Watch可以访问所有健康套件类型(尽管只有一部分数据)。您的应用是否已获得所有这些类型的许可?在设置健康商店时,需要明确询问您要读取或写入的每种类型。例如,要读取能量消耗,距离和心率,您需要包括:

let typesToRead = Set([
    HKObjectType.quantityTypeForIdentifier(HKQuantityTypeIdentifierActiveEnergyBurned)!,
    HKObjectType.quantityTypeForIdentifier(HKQuantityTypeIdentifierDistanceWalkingRunning)!,
    HKObjectType.quantityTypeForIdentifier(HKQuantityTypeIdentifierHeartRate)!
])

self.healthStore.requestAuthorizationToShareTypes(typesToShare, readTypes: typesToRead) { success, error in
    // ...
}