Healthkit knowledge points

Source: Internet
Author: User
Some healthkit knowledge points by Wu xueying
HealthKitHKUnitHKUnit *g = [HKUnit gramUnit];HKUnit *dL = [HKUnit literUnitWithMetricPrefix:HKMetricPrefixDeci];HKUnit *gPerdL = [g unitDividedByUnit:dL];HKQuantityHKUnit *gramUnit = [HKUnit gramUnit];HKQuantity *grams = [HKQuantity quantityWithUnit:gramUnit doubleValue:20];double kg = [grams doubleValueForUnit:[HKUnit unitFromString:@"kg"]];BOOL kgCompatible = [grams isCompatibleWithUnit:[HKUnit unitFromString:@"kg"]];BOOL kCalCompatible = [grams isCompatibleWithUnit:[HKUnit kilocalorieUnit]];HKObjectNSString *identifier = HKQuantityTypeIdentifierBodyTemperature;HKQuantityType *tempType = [HKQuantity quantityWithUnit:[HKUnit degreeFahrenheitUnit] doubleValue:98.6];NSDictionary *meta = @{HKMetadataKeyBodyTemperatureSensoLocation:@(HKBodyTemperatureSensorLocationEar)};HKQuantitySample *temperatureSample = [HKQuantitySample QuantitySampleWithType:tempTypequantity:myTempstartDate:[NSDate date]endDate:[NSDate date]metadata:meta];HKHealthStoreself.store = [[HKHealthStore alloc] init];HKQuantitySample *mySample = [self newSample];[self.store saveObject:mySample withCompletion:^(BOOL success,NSError *error) {if (success) {}}];HKQuery --- PredicatesHKQuantity *weight = [NSPredicate predicateWithFormat:@"%K > %@",HKPredicateKeyPathQuantity,weight];HKAnchoredObjectQueryself.lastAnchor = 0;HKAnchoredObjectQuery *query;query = [[HKAnchoredObjectQuery alloc] initWithType:bloodSugarPredicate:nilanchor:self.lastAnchorlimit:HKObjectQueryNoLimitCompletionHandler:^(HKAnchoredObjectQuery *query,NSArray *results,NSUInteger newAnchor,NSError *error) {self.lastAnchor = newAnchor;NSLog(@"Results:%@",results);}];


Healthkit knowledge points

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.