我正在尝试在swift中构建一个下拉菜单。一切都工作正常,除了放松segue。
我有一个CenterViewController,我已经实现了以下方法:
@IBAction func unwind(segue: UIStoryboardSegue) {
let sourceController = segue.sourceViewController as! MenuTableViewController
self.title = sourceController.currentItem?.title
}
在VC(CenterVC和MenuVc)中我都覆盖了prepareForSegue方法。
在stroryboard中我“从原型单元格到退出按钮”,并将其与展开方法连接
但是,当我触摸MenuVc中的单元格时,不会调用Action (我用断点检查了它)
我试图像this touturial那样做,但它没有用。
我犯过什么错误的想法?