关于UIImageView和UIView 圆角、阴影离屏渲染相关

iOS圆角和阴影,离屏渲染相关文章的整理
以下是否会造成离屏渲染的结果于 Simulator 勾选 Color Off-Screen Rendered验证,只要有黄色颜色的都认为是触发了离屏渲染。
以下书写纯属个人记录整理,严谨性不做保证。。。

一、UIImageView相关:

  1. 第一种情况,只设置了UIImageView的背景色时候
    UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(30, 600, 100, 100)];
    imageView.backgroundColor = [UIColor orangeColor];
    imageView.layer.cornerRadius = 50;
//    imageView.layer.masksToBounds = YES;
    [self.view addSubview:imageView];

这种情况,不需要设置masksToBounds属性为YES,UIImageView这样设置不会造成离屏渲染。
在没有设置UIImageView内容,既,设置图片时候时,设置了背景颜色或者边框都不会触发离屏渲染。

2.第二种情况,设置了UIImageView的contents,既,设置了图片。

    UIImageView *imageBackView = [[UIImageView alloc] initWithFrame:CGRectMake(30, 600, 100, 100)];
    imageBackView.image = [UIImage imageNamed:@"photoOne"];
    imageBackView.layer.cornerRadius = 50;
    imageBackView.layer.masksToBounds = YES;
    // imageBackView.contentMode = UIViewContentModeScaleAspectFill;
    // imageBackView.clipsToBounds = YES;

这种情况,masksToBounds设置为YES,才可以裁剪为圆形,不会造成离屏渲染情况。

  1. 触发了离屏渲染的情况,设置了UIImageView的image图片为前提。
    UIImageView *imageBackView = [[UIImageView alloc] initWithFrame:CGRectMake(30, 600, 100, 100)];
    imageBackView.image = [UIImage imageNamed:@"photoOne"];
    imageBackView.layer.cornerRadius = 50;
    imageBackView.layer.masksToBounds = YES;
    imageBackView.contentMode = UIViewContentModeScaleAspectFill;
    imageBackView.clipsToBounds = YES;
    /** 第一种情况,设置背景颜色,会触发离屏渲染*/
        imageBackView.backgroundColor = [UIColor orangeColor];
    /** 第二种情况,设置边框和边框颜色,会触发离屏渲染*/
        imageBackView.layer.borderWidth = 2.0;
        imageBackView.layer.borderColor = UIColor.blackColor.CGColor;
    [self.view addSubview:imageBackView];

在不设置imageBackView的背景颜色或者边框时候,不会触发离屏渲染,如果两者任设置其一,或都设置的情况下,会触发离屏渲染。

  1. 如果是使用Core Graphics + UIBezierPath绘制图片圆角情况,以上均不会触发离屏渲染。
    UIImageView *graphicsImage = [[UIImageView alloc] initWithFrame:CGRectMake(30, 300, 100, 100)];
    graphicsImage.backgroundColor = [UIColor whiteColor];
    graphicsImage.image = [UIImage imageNamed:@"photoOne"];
    graphicsImage.contentMode = UIViewContentModeScaleAspectFill;
    graphicsImage.clipsToBounds = YES;

    //size 新位图的大小 opaque 透明开关 scale 缩放因子 设置为0 系统自动匹配
    UIGraphicsBeginImageContextWithOptions(graphicsImage.bounds.size, NO, 0);
    //用贝塞尔曲线画一个圆形 addClip 进行切割
//    [[UIBezierPath bezierPathWithRoundedRect:self.imageView.bounds cornerRadius:5] addClip];
    /** 绘制某一个边,或几个边的圆角*/
    [[UIBezierPath bezierPathWithRoundedRect:graphicsImage.bounds byRoundingCorners:UIRectCornerTopLeft cornerRadii:CGSizeMake(10, 10)] addClip];
    //开始绘图
    [graphicsImage drawRect:graphicsImage.bounds];
    graphicsImage.image = UIGraphicsGetImageFromCurrentImageContext();
    //结束画图
    UIGraphicsEndImageContext();
    // 设置border宽度和颜色
//    self.imageView.layer.borderWidth = 2.0;
//    self.imageView.layer.borderColor = UIColor.blackColor.CGColor;
    [self.view addSubview:graphicsImage];

第四种方式,只适合于UIImageView。

二、关于UIView、UILabel、UIButton相关

  1. 对于UIView、UIlabel、UIButton来说,若仅仅实现了圆角设置,那么不需要设置masksToBounds = YES, 即可实现圆角设置,也不会造成离屏渲染。
    UIView *controlView = [[UIView alloc] initWithFrame:CGRectMake(30, 170, 100, 100)];
    controlView.backgroundColor = [UIColor orangeColor];
    controlView.layer.cornerRadius = 10;
    [mainScrollView addSubview:controlView];
    /** controlView的子类view*/
    UIView *subView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 50, 50)];
    subView.backgroundColor = [UIColor blueColor];
    [controlView addSubview:subView];
    
    UIButton *controlButton = [[UIButton alloc] initWithFrame:CGRectMake(150, 170, kScreenW - 180, 40)];
    controlButton.backgroundColor = [UIColor orangeColor];
    [controlButton setTitle:@"离屏渲染测试" forState:UIControlStateNormal];
    [controlButton setImage:[UIImage imageNamed:@"LayerBtnImg"] forState:UIControlStateNormal];
    controlButton.layer.cornerRadius = 20;
    [mainScrollView addSubview:controlButton];
    
    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(150, 220, kScreenW - 180, 40)];
    label.backgroundColor = [UIColor orangeColor];
    label.text = @"离屏渲染测试";
    label.textColor = [UIColor whiteColor];
    label.textAlignment = NSTextAlignmentCenter;
    label.layer.cornerRadius = 20;
    [mainScrollView addSubview:label];

以上情况,均不会造成离屏渲染。

  1. 一般情况下,我们设置以上控件时候,不需要设置masksToBounds = YES, 即可实现圆角设置,但是若,UIView内部设置了别的的控件, 内部控件也需要设置圆角属性时,分两种情况
    /** 第一种情况,设置无内容的view, masksToBounds不设置,圆角照样生效*/
    UIView *subView = [[UIView alloc] initWithFrame:CGRectMake(0, 90, 50, 50)];
    subView.backgroundColor = [UIColor blueColor];
    subView.layer.cornerRadius = 25;
    [controlView addSubview:subView];
    
    /** 第二种,设置了有内容的控件,masksToBounds不设置,圆角就不会有效果了*/
    // UILabel设置masksToBounds不会离屏渲染
    UILabel *label1 = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, controlView.bounds.size.width, 60)];
    label1.backgroundColor = [UIColor purpleColor];
    label1.text = @"不会离屏渲染";
    label1.numberOfLines = 0;
    label1.textColor = [UIColor whiteColor];
    label1.textAlignment = NSTextAlignmentCenter;
    label1.layer.cornerRadius = 10;
    label1.layer.masksToBounds = YES;
    [controlView addSubview:label1];
    
    // UIButton设置masksToBounds会离屏渲染
    // UIButton圆角设置不会造成离屏渲染的方法,底部链接Core Graphics实现方式。
    UIButton *controlButton = [[UIButton alloc] initWithFrame:CGRectMake(0, 150, controlView.bounds.size.width, 40)];
    controlButton.backgroundColor = [UIColor blueColor];
    [controlButton setTitle:@"会离屏渲染" forState:UIControlStateNormal];
    [controlButton setImage:[UIImage imageNamed:@"LayerBtnImg"] forState:UIControlStateNormal];
    controlButton.layer.cornerRadius = 20;
    controlButton.layer.masksToBounds = YES;
    [controlView addSubview:controlButton];

三、UIBezierPath创建一个阴影圆角view,不会造成离屏渲染的方式。

    self.backContentView = [[UIView alloc] initWithFrame:self.contentView.bounds];
    self.backContentView.backgroundColor = [UIColor whiteColor];
    self.backContentView.layer.cornerRadius = 5;

    self.backContentView.layer.shadowColor = [UIColor blueColor].CGColor;  //阴影的颜色
    self.backContentView.layer.shadowOffset = CGSizeMake(1, 3);       //阴影偏移量
    self.backContentView.layer.shadowOpacity = 0.8;        //阴影的透明度
    self.backContentView.layer.shadowRadius = 3;        //阴影的圆角
    self.backContentView.layer.shadowPath = [UIBezierPath bezierPathWithRoundedRect:self.backContentView.bounds byRoundingCorners:UIRectCornerBottomLeft | UIRectCornerBottomRight cornerRadii:CGSizeMake(0, 0)].CGPath;//参数依次为大小,设置四个角圆角状态,圆角曲度  设置阴影路径可避免离屏渲染
    
    [self.contentView addSubview:self.backContentView];

该方法可以创建一个有圆角和阴影的UIView,不会造成离屏渲染的产生。
以上方式是UIView设置四个角的圆角时候,如果需要单独设置UIView、UIButton单个方向的圆角或几个方向的圆角时候,移步看此文章,也不会造成离屏渲染。https://blog.csdn.net/philm_ios/article/details/81200738,一般大量使用Core Graphics绘制图形时候,都是用CPU的占用来避免GPU上的离屏渲染,因此,系统的可以满足的,就不必列表中大量使用Core Graphics。如果大量使用时候,自己可以开启一个异步全局队列,测试一下CPU上的占有率是否有所改善。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,724评论 6 479
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,104评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,142评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,086评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,076评论 5 370
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,914评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,220评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,871评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,318评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,834评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,951评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,574评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,162评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,162评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,383评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,349评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,652评论 2 343

推荐阅读更多精彩内容