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?
+4
A:
You could make the Segmented View the same size as 1 table cell. Dead Simple to do in Interface Builder.
bpapa
2010-01-07 17:42:38
You beat me to it.
Nimrod
2010-01-07 17:43:20
+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
2010-01-07 17:44:48