所以我想知道用什么函数来关闭从tableView打开的详细ViewController。目前我正在努力关闭视图,但触摸事件发生在您触摸屏幕上的任何位置时,而不是特定按钮。我试过在故事板上使用按钮但没有运气。以下是我到目前为止所做的工作(同样不是特定于按钮)......
//DetailedViewController.swift
override func touchesBegan(touches: NSSet, withEvent event: UIEvent) {
self.dismissViewControllerAnimated(true, completion: nil)
}
非常感谢任何反馈或指导!
答案 0 :(得分:0)
@IBAction func buttonAction(sender: AnyObject) {
self.dismissViewControllerAnimated(true, completion: nil)
}
将该按钮放在情节提要视图控制器中,然后右键单击并从该小动作中将该操作拖动到该按钮。或者,以编程方式创建按钮并在按钮上调用addTarget(self, action:"buttonAction:")
。