您好我如何点击一个可以显示另一个视图的tableviewcell。谢谢!
答案 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)
}