博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS开发-UIImageView高效设置Radius
阅读量:6803 次
发布时间:2019-06-26

本文共 1796 字,大约阅读时间需要 5 分钟。

圆角的设置在iOS中随处可见,开发的时候也很方便,但是有的时候如果一个页面有大量的需要设置圆角的图片,容易产生性能问题,UIImageView ios9.0之前设置圆角是会产生离屏渲染的,9.0之后不会产生离屏渲染

因此需要日常设置圆角的方法上加一些改动:

1.最简单的图片圆角设置:

self.imageView=[[UIImageView alloc]initWithFrame:CGRectMake(100,200, 100, 100)];    [self.imageView setImage:[UIImage imageNamed:@"FlyElephant.jpg"]];    self.imageView.layer.cornerRadius=50;    self.imageView.layer.masksToBounds=YES;    [self.view addSubview:self.imageView];

2.设置Rasterize栅格化处理,会将图片放在缓存区,不会不断的进行图片渲染:

self.imageView=[[UIImageView alloc]initWithFrame:CGRectMake(100,200, 100, 100)];    [self.imageView setImage:[UIImage imageNamed:@"dress3.jpg"]];    self.imageView.layer.cornerRadius=50;    self.imageView.layer.shouldRasterize = YES;    self.imageView.clipsToBounds=YES;    self.imageView.layer.rasterizationScale=[UIScreen mainScreen].scale;  //不设置会模糊,不相信可以自己尝试    [self.view addSubview:self.imageView];

3.UIBezierPath贝塞尔曲线绘制(推荐)

self.imageView=[[UIImageView alloc]initWithFrame:CGRectMake(100,200, 100, 100)];    UIImage *anotherImage = [UIImage imageNamed:@"FlyElephant.jpg"];    //注意第三个选项的设置    UIGraphicsBeginImageContextWithOptions(self.imageView.bounds.size, NO, [UIScreen mainScreen].scale);    //在绘制之前先裁剪出一个圆形    [[UIBezierPath bezierPathWithRoundedRect:self.imageView.bounds                                cornerRadius:50] addClip];    //图片在设置的圆形里面进行绘制    [anotherImage drawInRect:self.imageView.bounds];    //获取图片    self.imageView.image = UIGraphicsGetImageFromCurrentImageContext();    //结束绘制    UIGraphicsEndImageContext();    [self.view addSubview:self.imageView];

参考资料:http://stackoverflow.com/questions/11049016/cliptobounds-and-maskstobounds-performance-issue

http://stackoverflow.com/questions/17593524/using-cornerradius-on-a-uiimageview-in-a-uitableviewcell

转载于:https://www.cnblogs.com/xiaofeixiang/p/5123169.html

你可能感兴趣的文章
java 计算指数函数log2(X)的值
查看>>
Greenplum -- 最全分区表操作
查看>>
Linux交互命令工具expect与自动切换登录用户
查看>>
热烈祝贺广州固润光电参加2017深圳光博会取得圆满成功
查看>>
h5实体
查看>>
模板字符串
查看>>
使用WebDriver遇到的一些问题汇总
查看>>
AI:你们是不是在等一顶红帽子?
查看>>
六周第一次课 9.1 正则介绍_grep上 9.2 grep中 9.3 grep下
查看>>
我的友情链接
查看>>
华为 ACL 问题
查看>>
RHEL设置主机名
查看>>
Java原始的压缩和解压
查看>>
ORACLE系统表和视图说明
查看>>
你在为谁工作
查看>>
5、MySQL多表查询
查看>>
GZIPInputstream解决乱码问题
查看>>
阿里云不能启动docker
查看>>
安装LVS
查看>>
C++入门篇05
查看>>