SWIFT:CDA 到 iOS 10 个健康应用

SWIFT: CDA to iOS 10 Health app

有什么方法可以从另一个应用程序向健康应用程序发送 xml 文件 (CDA)?因为我的应用程序正在从来源获取 xml 文件,我想将其直接发送到新的健康应用程序 (iOS 10)。

创建 HKCDADocumentSample and save it with an HKHealthStore.

首先,检查授权

(void) checkForAuthorization  {
  if ([HKHealthStore isHealthDataAvailable]) {
     NSSet *setRead = [NSSet setWithObjects [HKObjectTypedocumentTypeForIdentifier:HKDocumentTypeIdentifierCDA], nil];
     NSSet *setWrite = [NSSet setWithObjects:[HKObjectType documentTypeForIdentifier:HKDocumentTypeIdentifierCDA], nil];
     [_store requestAuthorizationToShareTypes:setWrite readTypes:nil completion:^(BOOL success, NSError * _Nullable error) {
     if (error) {
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error" message:error.localizedDescription delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
            [alert show];
     } else if (success) {
            [self performSelectorOnMainThread:@selector(addDocumentToHealthApp) withObject:nil waitUntilDone:NO];
     }
       NSLog(@" Success = %@",success? @"YES" : @"NO");
     } ];
   } else {
      UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error" message:@"Health Kit not supported in device." delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
    [alert show];
  }

}

其次,添加记录wmthod这将为健康应用程序添加健康记录。

(void) addRecordToHealthApp
 {

NSURL *cdaPath = [[NSBundle mainBundle] URLForResource:@"sample" withExtension:@"xml"];

NSString*stringPath = [cdaPath absoluteString]; 
    NSData *dataOfCDAFile = [NSData dataWithContentsOfURL:[NSURL URLWithString:stringPath]];

NSDate *now = [NSDate date];
int daysToAdd = 7;
NSDate *newDate1 = [now dateByAddingTimeInterval:60*60*24*daysToAdd];

NSError *err;
HKCDADocumentSample *doc = [HKCDADocumentSample CDADocumentSampleWithData:dataOfCDAFile startDate:[NSDate date] endDate:newDate1 metadata:nil validationError:&err ];

UIAlertView *alert;
if (err) {
    alert  = [[UIAlertView alloc] initWithTitle:@"Error" message:err.localizedDescription delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
    [alert show];
}





[_store saveObject:doc withCompletion:^(BOOL success, NSError * _Nullable error) {
    NSLog("Stored %@",success?@"YES":@"NO");
}];

}