美文网首页
IOS 给View 设置背景;UIView background

IOS 给View 设置背景;UIView background

作者: PengPengPro | 来源:发表于2017-04-14 18:43 被阅读747次
    UIGraphicsBeginImageContext(self.view.frame.size);
    [[UIImage imageNamed:@"image.png"] drawInRect:self.view.bounds];
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    
    self.view.backgroundColor = [UIColor colorWithPatternImage:image];
    

    相关文章

      网友评论

          本文标题:IOS 给View 设置背景;UIView background

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