iOS中设置圆角的方式

iOS中设置圆角的方式,第1张

1.设置视图的layer.cornerRadius属性

内存消耗16.9

对uiview或uiimageview使用layer.cornerRadius设置圆角时,会触发离屏渲染,会带来额外的性能消耗,影响UI流畅.

这种方式适合用在设置圆角比较少页面中,例如,头像的圆角或者按钮的圆角,可以用此方法,对性能的损耗可以忽略不计.

离屏渲染(Off-Screen Rendering):意为GPU在当前屏幕缓冲区以外新开辟一个缓冲区进行 *** 作

在屏渲染(On-Screen Rendering): 意为当前屏幕的渲染, 指的是GPU的渲染 *** 作发生在当前用于显示的屏幕缓冲区中

2.贝塞尔曲线+CoreGraphics

内存消耗 8.6

这种方式适合用在设置圆角的控件比较多的情况下,用UIBezierPath和CoreGraphics框架画出一个圆角.例如使用uitableview或者uicollectionView需要给cell添加圆角/给控件添加圆角,此方式不会 *** 作到layer层,也能够高效的添加圆角.

3.CoreGraphics

内存消耗 8.6

CoreGraphics也称为Quartz 2D 是UIKit下的主要绘图系统,频繁的用于绘制自定义视图。Core Graphics是高度集成于UIView和其他UIKit部分的。Core Graphics数据结构和函数可以通过前缀CG来识别。

之前面试的时候被问道设置圆角除了layer还有什么方法?因为大家都知道layer会影响app性能,也是大家最常用、最简单的方法。下面就简单介绍这3种方法:

1、通过设置layer的属性

UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)]

//只需要设置layer层的两个属性

//设置圆角

imageView.layer.cornerRadius = imageView.frame.size.width / 2

//将多余的部分切掉

imageView.layer.masksToBounds = YES

[self.view addSubview:imageView]

2、第二种方法:使用贝塞尔曲线UIBezierPath和Core Graphics框架画出一个圆角

UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)]

imageView.image = [UIImage imageNamed:@"1"]

//开始对imageView进行画图

UIGraphicsBeginImageContextWithOptions(imageView.bounds.size, NO, [UIScreen mainScreen].scale)

//使用贝塞尔曲线画出一个圆形图

[[UIBezierPath bezierPathWithRoundedRect:imageView.bounds cornerRadius:imageView.frame.size.width] addClip]

[imageView drawRect:imageView.bounds]

imageView.image = UIGraphicsGetImageFromCurrentImageContext()

//结束画图

UIGraphicsEndImageContext()

[self.view addSubview:imageView]

3、第三种方法:使用CAShapeLayer和UIBezierPath设置圆角

#warning 首先需要导入

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {

[super viewDidLoad]

UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)]

imageView.image = [UIImage imageNamed:@"1"]

UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:imageView.bounds byRoundingCorners:UIRectCornerAllCorners cornerRadii:imageView.bounds.size]

CAShapeLayer *maskLayer = [[CAShapeLayer alloc]init]

//设置大小

maskLayer.frame = imageView.bounds

//设置图形样子

maskLayer.path = maskPath.CGPath

imageView.layer.mask = maskLayer

[self.view addSubview:imageView]

}

品牌型号:iPhone12

系统:IOS13.6

以iPhone12为例,苹果ios13小圆点可以进入设置中辅助功能触控,打开辅助触控按钮。分为3步,具体步骤如下: 1 进入设置辅助功能<!-- 1第1步 进入设置辅助功能 -->

打开手机设置,点击辅助功能选项。

2 选择辅助触控<!-- 2第2步 选择辅助触控 -->

点击触控,进入辅助触控选项。

3 打开辅助触控按钮<!-- 3第3步 打开辅助触控按钮 -->

进入页面后,将辅助触控右侧按钮开启即可。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/7756676.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-09
下一篇 2023-04-09

发表评论

登录后才能评论

评论列表(0条)

保存