0

在我的iPhone應用程序我有implimented UISearchDisplayController,而didSelectRowAtIndexPath方法方法控制內搜索(的tableView == self.searchDisplayController.searchResultsTableView)沒有條件裏面發生控制器是不會的條件內,如果

if (tableView == self.searchDisplayController.searchResultsTableView) 

我在廈門國際銀行加入UISearchDisplayController並加入廈門國際銀行UISearchDisplayDelegate,UISearchBarDelegate代表,,任何一個可以告訴我,爲什麼控制器不往裏走

+0

你有沒有得到這個問題的解決方案?我也堅持這一點 – mAc 2014-02-28 10:50:10

回答

0

tableView不等於self.searchDisplayController.searchResultsTableView

要麼刪除if語句,或者設置tableView等於self.searchDisplayController.searchResultsTablevView

如果您有多個表視圖,你可能忘了你的搜索結果表連接到相應的委託和數據源。

相關問題