I've got a document viewer that has one UIView (page) as a subview of a 'scrolledView' (UIView) of a UIScrollView. The page has more subviews, UIButtons and UITextFields for example.
The user can manually pan and zoom in the scroll view, but for some features, I'm doing a programmatic scrolling/panning to bring the text fields or buttons into view.
In some cases I need to programmatically adjust the contentSize for the scroll view and the frame of the scrolled view (to make sure text fields at the bottom of the page can be moved above the keyboard).
Also (I think) I'm correctly scaling the coordinates for contentSize and the frame of the scrolled view by the zoomScale of the scroll view.
Usually everything works as it should.
This is the problem:
In some rare occasions, after I've triggered the zooming out by clicking 'Next' on the keyboard, the buttons and text fields in the lower part of the page don't react to my touch any more. (It's usually around the lowest 10% or so.) Those above do like they should.
Can anybody give me any hints what to look for?
I have seen this on iOS 7 and iOS 8, older versions I don't know.