美文网首页
OC(十五):设置 uiwebview 的背景图片

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

作者: IMSong | 来源:发表于2016-12-07 17:59 被阅读183次
    //设置 uiwebview 的背景图片
    //设置背景为透明
        self.sinaWebView.backgroundColor = [UIColor clearColor];
    //设置为透明度
        self.sinaWebView.opaque = NO;
    //填充图片
        [self.sinaWebView setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"bg.png"]]];
    
    

    相关文章

      网友评论

          本文标题:OC(十五):设置 uiwebview 的背景图片

          本文链接:https://www.haomeiwen.com/subject/yafjmttx.html