up vote 1 down vote favorite
1
share [g+] share [fb]

I'm exploring the iPhone SDK and want to create and use a UI component like the figure below. A rounded table with cells in which each cell can have some label text, maybe an input text field and an action button that would take it to the next screen. The table should not be screen filling.

But... I can't figure out how to do it or find example code. The 'Table View' always seems to result in a screen filling table and although the 'Table View Cell' looks like what I need I can't find any good examples. I'm sure it's all not that hard, but I just can't find it. Any tips, pointers are appreciated.

(This figure is just an example of the sort of UI component I'm looking for, I'm not build something related to flight tracking...)

Table like component

Gero

link|improve this question

45% accept rate
feedback

3 Answers

Try looking at the "5_CustomTableViewCell" project of the TableViewSuite code sample from Apple. It should how to create custom subclasses of UITableViewCell.

The short answer is, as alluded to above, you'll want to subclass UITableViewCell and add your custom UI elements to it. For the example you provided, you'd want two different types of cells; one with a label (in light blue) and content (in black) for 4 of your cells, and then a more complex one with additional text on the right.

link|improve this answer
feedback

You want a Grouped style table, which has sections with rounded elements as you lay out instead of filling the screen.

You also want custom table cells, which you can search here to find example code for.

link|improve this answer
This is the correct answer. The other answers show how to add content to the cells, but this answer shows how to make the rounded look you asked for. – marcc Nov 10 '09 at 5:41
feedback

As mentioned by other answers, what you want is a grouped TableView with custom UITableViewCells. Take a look at the Table View Programming Guide, in particular this section on table view creation and this section on custom cells.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.