peoplePickerNavigationController:shouldContinueAfterSelectingPerson:
is deprecated in iOS 8. Does anyone know the substitute method?
Asked
Active
Viewed 167 times
0

rmaddy
- 314,917
- 42
- 532
- 579

redEyeProgrammer
- 206
- 2
- 4
-
See the iOS 8 release notes under the Contacts section. – rmaddy Jul 21 '14 at 01:16
1 Answers
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