views:

206

answers:

2

in the screen shot below, there are UISegmentedControl in between grouped UITableViewCells...it seems. How does one add other controls in between grouped cells in a UITableView?

alt text

+4  A: 

You could make the Segmented View the same size as 1 table cell. Dead Simple to do in Interface Builder.

bpapa
You beat me to it.
Nimrod
+3  A: 

Tables with multiple sections, and sections can have custom header and footer..

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section;   // custom view for header. will be adjusted to default or specified header height
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section;   // custom view for footer. will be adjusted to default 
Prakash
so, the screenshot has three tables? one table does not have custom header and footer. The other two tables have headers? Please correct me if I'm wrong.
Joo Park
Prakash