iOS以图片为背景颜色填充出现不满错乱问题
2018-07-24 本文已影响19人
BigBossZhu
改用此方法不会产生错乱问题
UIImage *image = [UIImage imageNamed:@"Group 312"];
self.headerView.layer.contents = (id) image.CGImage; // 如果需要背景透明加上下面这句
self.headerView.layer.backgroundColor = [UIColor clearColor].CGColor;