Skip to content

Instantly share code, notes, and snippets.

@jault3
Created October 23, 2014 05:58
Show Gist options
  • Save jault3/b151153f481c3b7349ca to your computer and use it in GitHub Desktop.
Save jault3/b151153f481c3b7349ca to your computer and use it in GitHub Desktop.
DataTypesToWrite.m
- (NSSet *)dataTypesToWrite {
HKQuantityType *heightType = [HKQuantityType quantityTypeForIdentifier:HKQuantityTypeIdentifierHeight];
HKQuantityType *weightType = [HKQuantityType quantityTypeForIdentifier:HKQuantityTypeIdentifierBodyMass];
HKQuantityType *heartRate = [HKQuantityType quantityTypeForIdentifier:HKQuantityTypeIdentifierHeartRate];
HKQuantityType *walkingRunningDistance = [HKQuantityType quantityTypeForIdentifier:HKQuantityTypeIdentifierDistanceWalkingRunning];
return [NSSet setWithObjects:heightType, weightType, heartRate, walkingRunningDistance, nil];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment