Can't change background for UIWebView in iOS

前端 未结 8 1200
小鲜肉
小鲜肉 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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-12 21:09

    In Xcode 4.6.3

    - (void)viewDidLoad
    {
        [super viewDidLoad];
    
        self.viewWeb.hidden = YES;
        self.viewWeb.delegate = self;
    // this allows the UIWebView box to your background color seamlessly.
        self.viewWeb.opaque = NO;
    
    }
    

提交回复
热议问题