Hi
I am sure this a pretty common problem: I have a UITableView with quite some entries in it. If you click on a cell, you get to see some details about the selected object (done with a navigation controller). Now if the user hits the back arrow at the top of the screen, he successfully returns to the old table, but this is now scrolled all the was back to the top, no matter which cell the user touched before.
I create the table in my "viewWillAppear" method of the ViewController. Yet I think this is not my issue, as log entries have shown that the "reloadData" call (which is in this method) does not get called when I return from another view (hit the back button).
Does anybody know how I can prevent the UITableview from scrolling up when returning from a deeper level?
Thanks a lot!