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
I've solved this problem, but forgot to post it...
- (void) viewDidLayoutSubviews
{
[self resizeScrollViewContent];
}
- (void) resizeScrollViewContent
{
self.scrollView.contentSize = CGSizeMake(320.0f, 468.0f);
}
Or you could use this as well:
- (void) viewDidLayoutSubviews
{
self.scrollView.contentSize = CGSizeMake(320.0f, 468.0f);
}