如何在 objective c 中的视图控制器中打开 .vcf 文件

How can i Open .vcf file in my view controller in objective c

我有来自 Web 服务的 .Vcf 文件 (Url)。我想在我的视图控制器中打开它。

任何人都可以帮助我。

谢谢。

这就是解决方案

NSData *data=[NSData dataWithContentsOfURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@",[self.totalData valueForKey:@"file"]]]];
      NSArray *contactList = [NSArray arrayWithArray:[CNContactVCardSerialization contactsWithData:data error:nil]];
      CNContact *contact;
           contact=[contactList objectAtIndex:0];
      NSLog(@"%@",contact.givenName);
      NSLog(@"%@",contact.familyName);