我正在使用presentViewController在XCode中的两个视图之间导航。我想知道如何从动态tableView 中选择单元格行以导航到视图控制器。所以,基本上,当我点击一个动态单元格时,每个单元格导航到它自己的不同视图。我怎么能这样做? 到目前为止,我有这段代码:
@IBAction func press(sender: AnyObject) {
let storyboard: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
let vc: UINavigationController = storyboard.instantiateViewControllerWithIdentifier("newViewController") as! UINavigationController
self.presentViewController(vc, animated: true, completion: nil)
}
但是,我不想使用按钮,而是希望每个单元格能够像我上面所说的那样引导另一个特定视图。
提前致谢