I\'m having an odd problem. I have a UIScrollView in a part of view hierarchy. It\'s working just fine when the view is presented via UITabBarController, but doesn\'t work at al
If you resize the scroll view content size in the viewDidLayoutSubview function it will work again.
- (void) viewDidLayoutSubviews { [self resizeScrollViewContent]; }
and here same question