How can I select the next row programmatically in iOS?
I have a nextButton on my view, and I want myTable to select the next row after clicking my nextButton.
[myTable selectRowAtIndexPath: ??????
animated:YES
scrollPosition:UITableViewScrollPositionMiddle];
is my code is correct?
Create a variable with your current index of the table
Create index path and select row as your code :