I need to call the didSelectRowAtIndexPath method again in a UITableView inside the didSelectRowAtIndexPath method.
The code is as follows:
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
------ --- ----
------ --- ----
------ --- ----
------ --- ----
[tableView didSelectRowAtIndexPath:1];
}
If I used the code as before, it is not accepted.
Is there any way to call the method didSelectRowAtIndexPathinside the " didSelectRowAtIndexPath" method ?
source
share