因此,在回答這個問題: Xcode 6 Storyboard Unwind Segue with Swift Not Connecting to Exit解決方法迅速平倉
我有同樣的問題,並試圖修復提出,但它仍然無法正常工作。我覺得我錯過了我的頭文件的一個步驟,是否足以簡單地添加一個.h文件到我的項目並添加提到的行?或者還有更多嗎?
IndexViewController.h:
@interface IndexViewController (Workaround)
- (IBAction)blaat: (UIStoryboardSegue *)segue;
@end
IndexViewController.swift:
@objc(IndexViewController) class IndexViewController : UITableViewController {
@IBAction func blaat(segue : UIStoryboardSegue) {
println("Test");
}
}
EDIT1:我做的完成步驟3,這是未設置並重新設置自定義類IndexViewController實例在故事板
編輯2:修復它,問題確實在標題中。 IndexViewController.h應該是:
@class IndexViewController;
@interface IndexViewController : UITableViewController
- (IBAction)unwindToIndexViewController: (UIStoryboardSegue *)segue;
@end
沒有,做到這一點,不解決它 – lordphnx