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. The obvious -sizeThatFits: unfortunately just returns the current frame size of the webView.

link|improve this question

1  
I'm not sure, but perhaps the answers to this question will help: stackoverflow.com/questions/745160/… – GregInYEG Oct 14 '10 at 17:56
feedback

2 Answers

up vote 47 down vote accepted

It turned out that my first guess using -sizeThatFits: was not completely wrong. It seems to work, but only if the frame of the webView is set to a minimal size prior to sending -sizeThatFits:. After that we can correct the wrong frame size by the fitting size. This sounds terrible but it's actually not that bad. Since we do both frame changes right after each other, the view isn't updated and doesn't flicker.

Of course, we have to wait until the content has been loaded, so we put the code into the -webViewDidFinishLoad: delegate method.

- (void)webViewDidFinishLoad:(UIWebView *)aWebView {
    CGRect frame = aWebView.frame;
    frame.size.height = 1;
    aWebView.frame = frame;
    CGSize fittingSize = [aWebView sizeThatFits:CGSizeZero];
    frame.size = fittingSize;
    aWebView.frame = frame;

    NSLog(@"size: %f, %f", fittingSize.width, fittingSize.height);
}

I should point out there's another approach (thanks @GregInYEG) using JavaScript. Not sure which solution performs better.

Of two hacky solutions I like this one better.

link|improve this answer
I tried your approach. The problem I experienced is that there is no scrolling. Any suggestions? – testing Dec 11 '10 at 15:31
I found out that the problem with the scrolling occurs because of the changed webview height. Do I have to change the UIView sizes? – testing Dec 11 '10 at 16:54
Not sure what your problem is. Perhaps you can post a new question with some code or description? – Ortwin Gentz Dec 11 '10 at 23:52
I had I suspect the same problem as user "testing" -- I think the problem was that since the frame of the UIWebView expanded to fit the content size, the underlying UIScrollView doesn't scroll the content any more since it "exactly fits". Expanding the frame of the UIWebView only really works if then the whole thing is fit inside an outer UIScrollView... – Bogatyr Feb 10 '11 at 21:42
3  
if am giving webView.scalesPageToFit = YES; then only this solution works..thanks for the solution.. – Sijo May 3 '11 at 9:13
show 1 more comment
feedback

AFAIK you can use [webView sizeThatFits:CGSizeZero] to figure out it's content size.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.