0
我想創建一個簡單的搜索功能,從主屏幕引入搜索視圖。我正在爲這個項目使用Interface Builder,這就是我的視圖設置:UISearchBar不刪除導航欄
但是當我點擊搜索欄時,導航欄消失,但搜索欄沒有變化。
我該如何解決這個問題?
-(BOOL)searchBarShouldBeginEditing:(UISearchBar *)searchBar
{
NSLog(@"about to edit");
[self.navigationController setNavigationBarHidden:YES animated:YES];
return YES;
}
不知道我是否做這個權利。
我替換它,以防萬一我用與UISearchDisplayController錯誤[這裏是設置圖片](http://i.imgur.com/m34OuP0.png) –