I have a UIWebView with different (single page) content. I\'d like to find out the CGSize of the content to resize my parent views appropriately. T
UIWebView
CGSize
Also in iOS 7 for proper working of all of mentioned methods add this in your view controller viewDidLoad method:
viewDidLoad
if ([self respondsToSelector:@selector(automaticallyAdjustsScrollViewInsets)]) { self.automaticallyAdjustsScrollViewInsets = NO; }
Otherwise neither of methods would work as it should.