我想在导航栏下面添加一个带有uitableview的搜索栏。 我想从数据库中搜索? 任何想法如何做到这一点
答案 0 :(得分:8)
将搜索栏添加为表格的标题视图。
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];