如何通过单击表格视图单元格进入另一个视图

时间:2016-03-19 15:20:22

标签: ios swift swift2

您好我如何点击一个可以显示另一个视图的tableviewcell。谢谢!

2 个答案:

答案 0 :(得分:0)

您需要使用didSelectRowAtIndexPath

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    let controller = //Init your controller here
    controller.data = //Pass any needed values to controller
    self.presentViewController(controller, animated: true, completion: nil) //Show your controller
}

您可以查看this tutorial了解详情。

答案 1 :(得分:0)

使用此didSelectRowAtIndexPath方法。

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    self.performSegueWithIdentifier("SEGUETOYOURVIEWCONTROLLERNAME", sender: self)
}