If you mean the interface with each email address in a little bubble, and they get highlighted if you hit backspace and deleted if you hit backspace again, it's kind of complicated to reproduce (I've done it). This is partly because (at least prior to iOS4) the way you interact with the keyboard is a bit limited. You need to have a hidden space character at the beginning of your UITextField
to even get a call when the user hits backspace when there are no other characters left.
As for creating the table that shows the addresses from the user's address book, use a standard UITableView
and do yourself a favor and use Erica Sadun's address book utilities to get the data from the address book.
There is something very similar in the Three20 framework, so I'd suggest you have a look at that.