2011-08-11 51 views

回答

-1

這是你的answer,它有一個很好的解釋如何工作。我想過給你一個單一的答案,但我想讓你知道更多的細節,以便你能更好地瞭解它是如何工作的?

4

執行UISearchDisplayControllerDelegate方法-searchDisplayController:shouldReloadTableForSearchScope:並返回NO。當您要重新加載搜索表時,請致電[theSearchDisplayController.searchResultsTableView reloadData]

1

要在禁用自動搜索UISearchDisplayController

1)設置UISearchDisplayDelegate自我

2)在didShowSearchResultsTableView委託方法

設置幀searchResultsTableView作爲

CGRect tempFrame= searchDisplayController.searchResultsTableView.frame; 
tempFrame.size.height=0.0f; 
searchDisplayController.searchResultsTableView.frame=tempFrame; 

相關問題