Não está funcionando. Coloco um breakpoint em ambos os eventos e nada
func tableView(tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
print(indexPath.row)
}
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: IndexPath) {
print(indexPath.row)
}
Não tenho gestures associados No didLoad(), coloquei
tableView.delegate = self as? UITableViewDelegate
tableView.dataSource = self
Pelo que ví são inúmeras as coisas que podem fazer com que isso não funcione, mas esgotei as possibilidades do que conheço. Help!