I am trying to show ABPersonVIewController on PeoplePickerNavigationController. But it isn't working in iOS 8. Here is the code I have used.
ABPersonViewController *personVC = [[ABPersonViewController alloc] init];
personVC.addressBook = peoplePicker.addressBook;
ABRecordID displayedPerson = contactId;
personVC.displayedPerson = ABAddressBookGetPersonWithRecordID(peoplePicker.addressBook, displayedPerson);
[peoplePicker pushViewController: personVC animated:NO];
[self presentViewController: peoplePicker animated:NO completion:nil];
What could be the reason and how will I get around this issue.
This will allow you to open people picker and select information from the contact. I don't know what information you need but you get the idea.