Multiple contact selector

Hi,

How do I design a text field as in the native iOS calendar Invitees or Email To field that lets you pick multiple contacts by typing in text field and once u select it, the name becomes highlighted, and backspacing lets you delete whole names at once?

(I’m using objective c & IB)

Replies

AFAIK, the textField (in mail) is in fact a collection view, each item being an instance of user that displays its nale and also a popover button.


So, my suggestion is: replace the UITextField with a CollectionView and create the clas to hold the names and all related information.