nik
nik

Reputation: 2329

adding textfield,label above the uitableview

How to design a tableview similar contact application in iphone.........

Upvotes: 1

Views: 868

Answers (2)

Thomas Clayson
Thomas Clayson

Reputation: 29925

you want the delegate method:

- (UIView)tableView:(UITableView *)tableView viewForHeaderAtSection:(NSInteger)section;

construct and return a UIView in that method.

Upvotes: 2

Vladimir
Vladimir

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

Related Questions