i want to detect user touch on table view so that i can pass that particular section information to the next view to display it ...
how can i do it
i want to detect user touch on table view so that i can pass that particular section information to the next view to display it ...
how can i do it
You need to set your view controller as the delegate for the table view:
tableView.delegate = self;
Then implement the tableView:didSelectRowAtIndexPath:
. If you're just getting started, you should probably read the UITableView programming guide.