Reputation: 2329
How to design a tableview similar contact application in iphone.........
Upvotes: 1
Views: 868
Reputation: 29925
you want the delegate method:
- (UIView)tableView:(UITableView *)tableView viewForHeaderAtSection:(NSInteger)section;
construct and return a UIView in that method.
Upvotes: 2
Reputation: 170839
Most likely they use UITableView with grouped style and custom views for table header and footer. (see tableFooterView and tableHeaderView properties)
Upvotes: 0