2012-03-28 52 views
1

在我的應用程序中,我必須在detailViewController中的導航欄下包含searchBar。我的detailViewController包含不同的視圖。 現在我的問題是我如何添加searchbar到detailViewController和我應該在哪裏添加searchBar?我如何添加搜索欄到我的splitViewController中的ipad

請建議我這樣做的方式。 謝謝。

+0

你甚至可以做到這一點! – tipycalFlow 2012-03-28 05:25:59

+0

嗨,你想要搜索?你想從表格視圖搜索數據還是其他任何東西? – Maulik 2012-03-28 05:27:24

+0

我的問題如何不符合我們的格式,以及問題屬於UX。 – CodaFi 2012-03-28 05:33:34

回答

0

在你detailViewController的viewDidLoad中從你的`xib`添加以下代碼

UIBarButtonItem *searchBarButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSearch 
                       target:self 
                       action:@selector(searchButtonAction:)]; 
[[self navigationItem] setRightBarButtonItem:searchBarButton animated:YES]; 
相關問題