Rahul Vyas
Rahul Vyas

Reputation: 28740

adding search bar under the navigation bar?

i want to add a search bar under the navigation bar with uitableview. and i want to search from the database? any idea how to do this

Upvotes: 3

Views: 6667

Answers (1)

zpesk
zpesk

Reputation: 4353

add the searchbar as the headerView for your table.

UISearchBar *temp = [[UISearchBar alloc]initWithFrame:CGRectMake(0, 0, 320, 45)];
temp.barStyle=UIBarStyleBlackTranslucent;
temp.showsCancelButton=YES;
temp.autocorrectionType=UITextAutocorrectionTypeNo;
temp.autocapitalizationType=UITextAutocapitalizationTypeNone;
temp.delegate=self;
self.tableView.tableHeaderView=temp;
[temp release];

Upvotes: 8

Related Questions