I know I must be doing something incredibly silly, but I am struggling with something that should be simple.
I have a tabbar app and originally I had the viewcontroller loaded with a XIB that only contained a scrollview. I tied the scrollview to the viewcontroller VIEW and the scrollview to a scrollview outlet and made the file owner the delegate as well.. and everything worked fine.
Then I decided to add some more elements to this view, so I created a VIEW, moved the ScrollView to be a subview of that VIEW, and added more elements. I tied the top view to the file owners view, and the scrollview to a scrollview element in the controller one again, and made its delegate the view controller
Now, suddenly the scrollview doesn’t scroll, it seems like the interactions are not getting to the scrollview or something and are being intercepted by the parent view.
I’m a bit perplexed on this one.
Go into the XIB and make sure the “User Interaction” option with the scroll view is still enabled. If it is, check the “Exclusive Touch” outlet on every view to see if they are disabled (as they should be), and enable it on the scroll view. If all else fails, check that the content size of this thing is larger than its frame, else it won’t scroll.