How to identify the cell that has been clicked. Thereafter, i want to the record stored in that row and navigate and display those values another viewcontroller.
This is a storyboard application that i am using, so can you tell me how to get this done from it.
Before, i used the following method to identify the cell clicked, and then by the use of indexPath
i am able to get the record that has been selected so i can navigate to the other viewcontroller.
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
How to do this in a storyboard enviroment. I am using segue
to navigate.