Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ABPeoplePickerNavigationController alternative that allows selection of multiple people

Tags:

uikit

iphone

I'd like to prompt the user to select 1 or more people from their address book, but ABPeoplePickerNavigationController doesn't allow that (which is ironic, since it's people picker, not a person picker).

Before I go create my own, does anyone know of an alternative (open source) implementation of such a controller?

like image 601
Jaka Jančar Avatar asked Nov 25 '22 21:11

Jaka Jančar


1 Answers

Actually, the People Picker delegate has the following:

peoplePickerNavigationController:shouldContinueAfterSelectingPerson:

Which, if you return NO, you can perform logic (queue up info, perform an animation, etc) and then continue displaying the picker until all people are picked from the picker.... say that 12 times fast.

like image 89
slf Avatar answered Nov 28 '22 11:11

slf