Hey.
I'm trying to use a UIWebView for displaying content higher than the screen of the iPhone, without needing to scroll in the webView itself.
The webView is placed under a UIScrollView in IB with some other objects that I want the scrollView to scroll up and down with the UIWebView.
I know you can do this with a UITextView (CGRect frame = _textView.frame; frame.size.height = _textView.contentSize.height; _textView.frame = frame;
), but the UIWebView does not inherit from UIScrollView and does therefore not contain the contentSize
-property.
I'd really like to keep it a UIWebView, because the data I get is in HTML-blocks.
Thank you!