I have a UIScrollVIew in a Navigation controller, I present a Modal View controller from the Navigation controller, which works fine. When I dismiss the modal view controller (from the parent), all the content in my UIScroll view gets moved around and paging is broken. The contents of the scroll view are added programmatically, but the scrollView was created in IB.
2
votes
What happens in the UIScrollView controller's viewWillAppear, viewDidAppear, viewWillDissappear, viewDidDissappear?
– griotspeak
I had the same issue so I added the viewWillAppear method and put in an NSLog and it turned out the ScrollView was getting longer after the Modal View Controller disappeared. Not sure why but I reset the ScrollView frame at this point and it's now working
– petenelson
1 Answers
3
votes
Sounds like it has to do with autoresizing behavior as well as the autoresizing masks. In IB, turn off "Autoresize Subviews" in relation to the ScrollView.
Also check its autoresizing mask: does it make sense? Play with its mask and trouble shoot from there. When you create views programmatically, the default autoresize mask may have unexpected behavior.