I have a cell with 2 images in it. When the user touches a particular image I want to use NSLog
to state which image was clicked.
For now, I am only getting the cell that was selected. How can I get which image was touched too?
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"CELL CLICKED WAS %ld",indexPath.row);
}