Hello all, How to design a tableview similar contact application in iphone.........
A:
Most likely they use UITableView with grouped style and custom views for table header and footer. (see tableFooterView and tableHeaderView properties)
Vladimir
2010-10-15 13:56:52
A:
you want the delegate method:
- (UIView)tableView:(UITableView *)tableView viewForHeaderAtSection:(NSInteger)section;
construct and return a UIView in that method.
Thomas Clayson
2010-10-15 13:57:50