我有segueing從searchResultController到另一個視圖 - 控制斯威夫特SearchResultsController Segue公司 - 「接收器...與標識符‘testSeg’'沒有賽格瑞」
從一開始的問題: 我有三個控制器,一個UIViewController與一個CollectionView和UISearchController嵌入在裏面,一個UITableViewController作爲searchResultController和最終的UIViewController,每個tableview單元格在被點擊時會延續。 Here is an image of Main.Storyboard。 Here the segue with its identifier is shown, which is the problem。
的賽格瑞從SearchResultsTableViewController本身聯繫在一起,而不是tableviewcell 當我點擊一個搜索結果,我執行Segue公司從SearchResultsController的didSelectRowAtIndexPath方法方法。但是,我得到「接收器...沒有標識符'testSeg''」錯誤。
爲了清楚起見,控制器的名稱和它們的作用是:
1)DiscoverViewController:(包含UISearchController和的CollectionView)
2)SearchResultsTableViewController(充當其正確地過濾並更新任何數據searchResultsController每個小區被認爲從該控制器到Segue公司)
3)的UIViewController(A簡單的UIViewController其是SEGUE的目的地)
問題在於segue,其他一切按預期執行。這是SearchResultsTableViewController的代碼。
注意:您可以忽略的事實,這是斯威夫特3.我試圖用這個雨燕2.3,得到了相同的錯誤
private let reuseIdentifer = "searchCell"
class SearchResultsTableViewController: UITableViewController {
var searchResults: [String]!
override func viewDidLoad() {
super.viewDidLoad()
// Uncomment the following line to preserve selection between presentations
// self.clearsSelectionOnViewWillAppear = false
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
self.tableView!.register(UITableViewCell.self, forCellReuseIdentifier: reuseIdentifer)
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
// MARK: - Table view data source
override func numberOfSections(in tableView: UITableView) -> Int {
// #warning Incomplete implementation, return the number of sections
return 1
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// #warning Incomplete implementation, return the number of rows
return (searchResults?.count)!
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: reuseIdentifer, for: indexPath)
// Configure the cell...
cell.textLabel?.text = searchResults[indexPath.item]
return cell
}
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
self.performSegue(withIdentifier: "testSeg", sender: self)
}
}
的SearchResult所陣列來自DiscoverViewController。一切工作正常,除了賽格。選擇一行後,該應用程序崩潰的錯誤:
2016-10-07 12:17:51.216 MultiTestDemo[1028:10002] *** Terminating app
due to uncaught exception 'NSInvalidArgumentException', reason:
'Receiver (<MultiTestDemo.SearchResultsTableViewController:
0x7fea214055f0>) has no segue with identifier 'testSeg''
我已確保在segue標識符中沒有空格或任何內容。我甚至直接將它複製到SearchResultsTableViewController的didselectrowatindexpath函數中。
總之,我所要求的是爲什麼SearchResultsTableViewController在IB連接時無法再識別segue(或帶有任何標識符的任何segue)。任何幫助將不勝感激。
你如何實例化SearchResultsTableViewController? – pbasdf
在您的GitHub鏈接中找到它。該問題源於您如何實例化SearchResultsTableViewController。這一行:'讓searchResultsController = SearchResultsTableViewController()'創建它,但沒有提及故事板 - 因此它「不知道」故事板中定義的segue。您應該使用UIStoryboard方法'instantiateViewControllerWithIdentifier'(如果需要,在故事板中添加了一個標識符)。 – pbasdf
這絕對有效。之前我曾嘗試過這種方式,但它一直在崩潰,直到我在搜索REsultsController中刪除了重複實例。謝謝你的答案。但是,似乎沒有「回頭路」。我意識到演示中沒有導航控制器,但是如果用戶返回搜索結果的確如此,例如,這是一個用戶搜索功能?之前的一個實現是我曾經工作過並允許返回的,但是當需要返回時,使用searchResultsController會導致複雜性。 –