你好,我的故事板里有一个TableViewController
的静态单元格。我想在每个单击的单元格上启动不同的视图控制器或触发一些方法。如果我将segue从我的cell
拖到另一个ViewController它不起作用,didSelectRowAtIndexPath
也无效。
这是我的班级
class ProfileTableViewController: UITableViewController {
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
tableView.deselectRowAtIndexPath(indexPath, animated: true)
let row = indexPath.row
print("Row: \(row)") //nothing is printing out
}
override func viewDidLoad() {
super.viewDidLoad()
print("hello")
}
}