iPhone SDK - UIWebView has a grey box over it

后端 未结 7 500
长发绾君心
长发绾君心 2021-01-14 01:30

Sometimes, my UIWebView will have a grey box over part or all of the content. I can\'t make heads or tails of why it\'s happening. It happens regularly for certain content.

7条回答
  •  一生所求
    2021-01-14 02:13

    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.

提交回复
热议问题