iPhone SDK - UIWebView has a grey box over it

后端 未结 7 503
长发绾君心
长发绾君心 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:08

    Nudging the UIScrollView in the UIWebView it fixes this for me:

    [UIScrollView *webScroller= [[webView subviews] lastObject];    
    [webScroller setContentOffset:CGPointMake(0,1) animated:NO];
    [webScroller setContentOffset:CGPointMake(0,0) animated:NO];
    

提交回复
热议问题