I had the same problem: I used to drag my TabGestureRecognizer directly onto the storyboard instead of creating them through code. With iOS6, now this seems to break the scroll.
I prefer to add presentations, gestures, etc. directly to the storyboard, not through the code.
You can still do this, but with two changes:
1) Link to Outlet collections
- Right-click the GestureRecognizer, which will be visible to you in the dock.
- Clear Outlet Collection Link Section
2) Attach the GestureRecognizer to the appropriate view through the code
source share