0

peoplePickerNavigationController:shouldContinueAfterSelectingPerson: is deprecated in iOS 8. Does anyone know the substitute method?

rmaddy
  • 314,917
  • 42
  • 532
  • 579

1 Answers1

0

I'm guessing your app only requires user to select from list and not display details. peoplePickerNavigationController:didSelectPerson: is the replacement method.

- (void)peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker didSelectPerson:(ABRecordRef)person
{

    ...
}
RobCroll
  • 2,571
  • 1
  • 26
  • 36