I'm having a hard time getting my scrollView to reset to the top after I hit the back button and re-enter the view. In short, I have one of several images that load in the scrollView depending on which row was selected in the previous tableView. I have tried adding:
scrollView.scrollsToTop = YES;
to viewWillAppear and viewWillDisappear, as well as a combination of other trials. Is there a fundamental concept that I may be missing? I would just like to make the scrollView reset to the top when exiting the view so that it is ready the next time the view is called.