Reputation: 1
I would to insert a recipients bar in an iPhone application, a bar that list address book items when I type chars on it, the same that is used in the iPhone SMS native application. How can I do?
Upvotes: 0
Views: 130
Reputation: 385660
Apple doesn't provide a public API for that type of input field. You can implement it yourself, or you can look for someone else's implementation, like JSTokenField
.
Upvotes: 0
Reputation: 53121
This is achieved using a UISearchDisplayController
. You can see how to do this in Apple's TableSearch example code.
Upvotes: 1