I know that there is this method to detect which UITableViewCell is selected:
- (void) tableView: (UITableView *) tableView didSelectRowAtIndexPath: (NSIndexPath *) indexPath {
}
But i don't want to know the selected row, i want to know what the content of the cell is and according to that i want to do something. So is there a way to tag a cell? For better understanding, let's say i have four cells 1, 2, 3 and 4. When i reorder them and my order is 1, 4, 2, 3 and i want to show the value in another view, then it'd show me 2 instead of 4 when i select the second row.