ABPeoplePickerNavigationController changes with iOS8?

后端 未结 3 1574
一生所求
一生所求 2020-12-02 22:16

Since I have updated XCode (6.0, 6A313) and my iOS (8.0, 12A365) on the iPhone to gm seeds, the ABPeoplePickerNavigationController code doesn\'t work like before.

3条回答
  •  被撕碎了的回忆
    2020-12-02 23:10

    See also the delegate method, new with iOS8:

    - (void)peoplePickerNavigationController:(ABPeoplePickerNavigationController*)peoplePicker didSelectPerson:(ABRecordRef)person;
    {
        [self selectedPerson:person];
    }
    

    That's what I wanted in my case.

提交回复
热议问题