IOS开发入门:iOS设置圆角的三种方式
安安 2017-10-03 来源 :网络 阅读 900 评论 0

摘要:本篇IOS开发入门教程将为大家讲解iOS设置圆角的三种方式,看完这篇文章会让你对IOS编程的知识点有更加清晰的理解和运用。

本篇IOS开发入门教程将为大家讲解iOS设置圆角的三种方式,看完这篇文章会让你对IOS编程的知识点有更加清晰的理解和运用。

 

第一种方法:通过设置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];

   

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

   

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

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

 //开始对imageView进行画图

 UIGraphicsBeginImageContextWithOptions(imageView.bounds.size, NO, 1.0);

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

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

 [imageView drawRect:imageView.bounds];

 imageView.image = UIGraphicsGetImageFromCurrentImageContext();

  //结束画图

 UIGraphicsEndImageContext();

 [self.view addSubview:imageView];

   

 

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

 

#import "ViewController.h"#import <AVFoundation/AVFoundation.h>@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {

    

    [super viewDidLoad];

    

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

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

    UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:imageView.bounds byRoundingCorners:UIRectCornerBottomLeft | UIRectCornerTopLeft cornerRadii:CGSizeMake(25, 5)];

    CAShapeLayer *maskLayer = [[CAShapeLayer alloc]init];

    maskLayer.frame = imageView.bounds;

    maskLayer.path = maskPath.CGPath;

    imageView.layer.mask = maskLayer;

    [self.view addSubview:imageView];

}

 

这三种方法中第三种最好,对内存的消耗最少啊,而且渲染快速。

效果图:

 IOS开发入门:iOS设置圆角的三种方式

 

希望这篇文章可以帮助到你。总之,同学们,你想要的职坐标IOS频道都能找到!

本文由 @安安 发布于职坐标。未经许可,禁止转载。
喜欢 | 0 不喜欢 | 0
看完这篇文章有何感觉?已经有0人表态,0%的人喜欢 快给朋友分享吧~
评论(0)
后参与评论

您输入的评论内容中包含违禁敏感词

我知道了

助您圆梦职场 匹配合适岗位
验证码手机号,获得海同独家IT培训资料
选择就业方向:
人工智能物联网
大数据开发/分析
人工智能Python
Java全栈开发
WEB前端+H5

请输入正确的手机号码

请输入正确的验证码

获取验证码

您今天的短信下发次数太多了,明天再试试吧!

提交

我们会在第一时间安排职业规划师联系您!

您也可以联系我们的职业规划师咨询:

小职老师的微信号:z_zhizuobiao
小职老师的微信号:z_zhizuobiao

版权所有 职坐标-一站式IT培训就业服务领导者 沪ICP备13042190号-4
上海海同信息科技有限公司 Copyright ©2015 www.zhizuobiao.com,All Rights Reserved.
 沪公网安备 31011502005948号    

©2015 www.zhizuobiao.com All Rights Reserved

208小时内训课程