I need to manually programmatically initiate cell selection on my TableView. Essentially, a preliminary function is performed.
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
I do this so that when an item is deleted from the View table, it automatically loads the next item. However, when I try to manually call this function, it cannot be found. I tried
self.tableView: didSelectRowAtIndexPath
and
[tableView didSelectRowAtIndexPath]
but not recognized.
source share