I need to call didSelectRowAtIndexPath method in UITableView again within inside the didSelectRowAtIndexPath method.
The code is as follows:
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
------ --- ----
------ --- ----
------ --- ----
------ --- ----
[tableView didSelectRowAtIndexPath:1];
}
If I used code as before, it is not accepted.
Is there any possible way to call “didSelectRowAtIndexPath” method inside same “didSelectRowAtIndexPath” method?
I think you meant to call your delegate rather than then table.