In a normal table with multiple section, (that I did through the delegate to define section), now in didSelectRowAtIndexPath it starts with initial for every section. Now how can i check row from which section have been tapped?
In a normal table with multiple section, (that I did through the delegate to
Share
In your
didSelectRowAtIndexPath:simple place the following:NSLog(@"SECTION: %i ROW: %i",indexPath.section,indexPath.row);