1
我的主屏幕中有一個搜索欄 - 根表視圖控制器。如果我瀏覽其他屏幕並返回,有時搜索欄會消失。這是我的代碼。iphone - 搜索欄從我的根視圖控制器中消失
searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 44.0)];
searchBar.delegate = self;
searchBar.tintColor = [UIColor blackColor];
[searchBar sizeToFit];
self.tableView.tableHeaderView = searchBar;
searchDisplayController = [[UISearchDisplayController alloc]
initWithSearchBar:searchBar contentsController:self];
searchDisplayController.delegate = self;
searchDisplayController.searchResultsDataSource = self;
searchDisplayController.searchResultsDelegate = self;
我的代碼有什麼問題嗎?或者它是SDK 3.0的怪癖之一?