I’ve got UItableview and also two buttons Next and Previous tapping on which I should go to the selection of the previous/next cell? is it possible? Moreover, how to remember the cell the user last tapped so that it is selected on start-up?
Share
Implement UITableViewDelegate and save the currently selected index in didSelectRowAtIndexPath:
Then in your button action you can do something like…