滚动UISearchBar
时如何隐藏UItableview
,向下滚动时显示,就像GLIDE - VIDEO TEXT iPhone应用程序一样?
答案 0 :(得分:0)
试试这个
UISearchBar *temp = [[UISearchBar alloc]initWithFrame:CGRectMake(0, 0, 320, 45)];
temp.barStyle=UIBarStyleBlackTranslucent;
temp.showsCancelButton=NO;
temp.autocorrectionType=UITextAutocorrectionTypeNo;
temp.autocapitalizationType=UITextAutocapitalizationTypeNone;
temp.delegate=self;
YourTable.tableHeaderView=temp;
最后将YourTableView添加到ScrollView。
[yourScrollView addSubView:YourTableView];
可能对您有所帮助
答案 1 :(得分:0)
您必须将UISearchBar作为UITableView的标头。即使行包含部分(如在Glide中),它也可以工作。
希望它有所帮助。