vote up 2 vote down star
3

I have UIWebView within a UIScrollView. Then as I scroll, the web view displays first two pages correctly but does draws only half of the third the page. If I tap on the web view it draws the content or if I call -[UIWebView reload] in -scrollViewDidEndDecelerating, it shows the content.

Is there any way I can make the web view draw correctly?

flag

5 Answers

vote up 0 vote down

All UIViews have a size limit of 1024x1024 pixels. This is stated at the end of the Overview section of the UIView documentation.

If your web view must have more than 1024px of content, you will have to take it out of the parent scroll view and let it manage scrolling on its own.

link|flag
vote up 0 vote down

Bump. Same problem here, anyone gotten any further with this?

link|flag
vote up 2 vote down

UIWebViews cannot be loaded concurrently. You must load one, wait til it finishes, then load the next, and so on.

You can do this on a timer, or wait until when the scrolled UIWebView has the focus before loading the data.

link|flag
vote up 0 vote down

Ah, i just posted the same question http://stackoverflow.com/questions/273067/iphone-sdk-uiwebview-has-a-grey-box-over-it .. anyone got anywhere with this?

link|flag
vote up 0 vote down

Having the same problem here, did you get a solution yet?

link|flag

Your Answer

Get an OpenID
or

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