在导航栏下添加搜索栏?

时间:2009-06-17 02:46:01

标签: iphone objective-c cocoa-touch

我想在导航栏下面添加一个带有uitableview的搜索栏。 我想从数据库中搜索? 任何想法如何做到这一点

1 个答案:

答案 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];