views:

156

answers:

2

I cannot find how to a text field group, similar to what is in the Address Book app:

alt text

Can someone tell me what I am doing wrong? I can't find an option to make them look this way.

Also, does anyone know the font, font size and color?

+1  A: 

As Devin mentioned it is just a UITableView with it's style set to Grouped. Then each cell contains a UITextField. They probably also worked their magic so when you click "Next" in the first cell, it automatically assigns the second cell as a first responder, which then moves the cursor down instead of putting the keyboard away.

Pyro2927