Can't change background for UIWebView in iOS

前端 未结 8 1195
小鲜肉
小鲜肉 2020-12-12 20:20

Is there a way to change background color for UIWebView?

None of the colors set in IB effect UIWebView behavior: before actual content is l

8条回答
  •  心在旅途
    2020-12-12 20:58

    I got a solution. Add the web view after it is loaded.

    -(void)webViewDidFinishLoad: (UIWebView *)pageView {
    
        self.view =pageView;
        [pageView release];
    }
    

提交回复
热议问题