I have a tableView full of images. When a user taps on an image (within the cell), a viewController with a larger zoomable version of the image is called with a popover segue. W
Cache selected indexPath of the selected image cell, and in viewWillAppear method,
indexPath
viewWillAppear
if(selectedPath != nil) { [self.tableView scrollToRowAtIndexPath:selectedPath atScrollPosition:UITableViewScrollPositionBottom animated:YES]; }
This will scroll back to your selected image row.