添加新联系人时,iOS 9无法从addressbookui / contactsui访问摄像头

时间:2015-09-21 13:54:27

标签: ios9 addressbookui

自从iOS 9使用addressbookui框架在我的应用中添加新联系人后,我无法添加相机中的照片,尽管我可以添加照片库中的照片。这在iOS 8及更低版本中可以正常使用。我甚至使用了contactsUI API,并试图从相机添加照片,但即使这样也行不通。

//iOS 9
CNContact *contact = [[CNContact alloc] init];
    CNContactViewController *contactVC = [CNContactViewController viewControllerForNewContact:contact];
    [self presentViewController:contactVC animated:YES completion:nil];

//iOS 8
ABNewPersonViewController *unknownPersonViewController = [[ABNewPersonViewController alloc] init];
[self presentViewController:unknownPersonViewController animated:YES completion:nil];

0 个答案:

没有答案