2009-06-17 5 views

ответ

8

добавить поисковую панель в качестве headerView для вашей таблицы.

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]; 
Смежные вопросы