Tuesday 15 May 2012

iphone - Table View Go To Same Place After Selection -


What is possible after selecting a cell in the table view and hitting the button after returning to the following view controller? ? Is the place in the table? I do not like why it goes back to the top, especially because of the size of my table.

You should get the last touched index for the cell, and

  [TableView scrollToRowAtIndexPath: Search in DESIRED_INDEXPATH: indexPath.section] atScrollPosition: Animated UITableViewScrollPositionMiddle;);   

When you return to your previous view controller.

No comments:

Post a Comment