I have a UIScrollView that has a single child view within it. If I set the contentSize of the UIScrollView immediately after creation, everything works as I expect and I get scrolling.
The challenge is the view within the scrollview is dynamically sized. The width is fixed, but the height is unknown at the time I set up the scroll view.
When I do a [scrollView setContentSize:CGRectMake(...)] after the inner view does it's thing, the scroll view updates to the proper size and scrolling works. So basic scrolling works fine.
However, the major problem is that when I setContentSize at a later point, the UIScrollView decides to scroll down(with animation) towards the end of the scroll view, which is not what I want, I want the scroll to stay at the top, and let the contents within the scrollview either get bigger or smaller, without changing the apparent scroll position.
What am I missing?
-setContentSize:. – Kevin Ballard Feb 3 '11 at 20:35