Reputation:
Is there a native view controller available (in iOS 5) similar to MFMessageComposeViewController
but without the message field? Basically I just need to pick contacts from the address book just like the iCal Invitees picker but with the token field and search table!
Upvotes: 0
Views: 539
Reputation:
I've implemented my own picker with tokenizing text field and contacts picker. Have a look and feel free to use & extend.
https://github.com/eaigner/COPeoplePickerViewController
Upvotes: 2
Reputation: 119272
Have you looked at ABPeoplePickerNavigationController? This is for browsing the address book.
Upvotes: 0
Reputation: 243156
If you just want to pick some people from the address book, then that's what he ABPeoplePickerNavigationController
is for.
Upvotes: 0