I\'m trying to get index of selected item in TableView and start some activity after that. Unfortunately most of solutions that I found are in obje
Inherit the tableview delegate and datasource. Implement delegates what you need.
override func viewDidLoad() {
super.viewDidLoad()
tableView.delegate = self
tableView.dataSource = self
}
And Finally implement this delegate
func tableView(_ tableView: UITableView, didSelectRowAt
indexPath: IndexPath) {
print("row selected : \(indexPath.row)")
}