Reputation: 28740
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
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