2013-10-05 122 views
0

我想創建一個簡單的搜索功能,從主屏幕引入搜索視圖。我正在爲這個項目使用Interface Builder,這就是我的視圖設置:enter image description hereUISearchBar不刪除導航欄

但是當我點擊搜索欄時,導航欄消失,但搜索欄沒有變化。 enter image description here

我該如何解決這個問題?

-(BOOL)searchBarShouldBeginEditing:(UISearchBar *)searchBar 
{ 
    NSLog(@"about to edit"); 
    [self.navigationController setNavigationBarHidden:YES animated:YES]; 
    return YES; 
} 

不知道我是否做這個權利。

回答

0

您是否添加了UISearchBar或UISearchDisplayController?第一個它只是一個搜索欄,你可以放置在你想要的任何地方,第二個是你想要的方式,向上並覆蓋屏幕

+0

我替換它,以防萬一我用與UISearchDisplayController錯誤[這裏是設置圖片](http://i.imgur.com/m34OuP0.png) –