lodecesa
lodecesa

Reputation: 1

Recipients bar in an iPhone App

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

Answers (2)

rob mayoff
rob mayoff

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

Ashley Mills
Ashley Mills

Reputation: 53121

This is achieved using a UISearchDisplayController. You can see how to do this in Apple's TableSearch example code.

Upvotes: 1

Related Questions