OC(十五):设置 uiwebview 的背景图片

//设置 uiwebview 的背景图片
//设置背景为透明
    self.sinaWebView.backgroundColor = [UIColor clearColor];
//设置为透明度
    self.sinaWebView.opaque = NO;
//填充图片
    [self.sinaWebView setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"bg.png"]]];

你可能感兴趣的:(OC(十五):设置 uiwebview 的背景图片)