美文网首页swift
swift3 细节改动 竖线|与语法的改动

swift3 细节改动 竖线|与语法的改动

作者: 大_瓶_子 | 来源:发表于2016-12-20 15:38 被阅读0次

主要说一下竖线与语法的改动
下面的例子都是添加圆角的方法

在OC中:

UIView *view2=[[UIView alloc]initWithFrame:CGRectMake(120,10,80,80)];
view2.backgroundColor=[UIColor redColor];[self.view addSubview:view2];
UIBezierPath*maskPath=[UIBezierPath bezierPathWithRoundedRect:view2.bounds byRoundingCorners:UIRectCornerBottomLeft|UIRectCornerBottomRight cornerRadii:CGSizeMake(10,10)];
CAShapeLayer*maskLayer=[[CAShapeLayer alloc]init];
maskLayer.frame=view2.bounds;
maskLayer.path=maskPath.CGPath;
view2.layer.mask=maskLayer;
UIRectCornerBottomLeft|UIRectCornerBottomRight 意思是在view2的左下角和右下角设置圆角

在Swift3.0以前:

 var rect =CGRect(x:0, y:0, width:200, height:40)
var textfield = UITextField(frame: rect)
textfield.backgroundColor=UIColor.lightGrayColor()// 背景颜色
textfield.text="GAGA"
textfield.textAlignment= NSTextAlignment.Center
textfield.textColor=UIColor.darkGrayColor()
var maskPath = UIBezierPath(roundedRect: textfield.bounds,    byRoundingCorners: UIRectCorner.TopLeft| UIRectCorner.TopRight,// 左上右上圆角
    cornerRadii:CGSize(width:12, height:12))// 圆角半径

/* 边框  */
var borderLayer = CAShapeLayer()
borderLayer.frame= textfield.bounds
borderLayer.path= maskPath.CGPath
borderLayer.strokeColor=UIColor.darkGrayColor().CGColor// 边框颜色borderLayer.fillColor=UIColor.clearColor().CGColor

/* 遮罩 */

var maskLayer = CAShapeLayer()
maskLayer.frame= textfield.bounds
maskLayer.path= maskPath.CGPath
textfield.layer.mask= maskLayer
textfield.layer.addSublayer(borderLayer)

可以看出UIRectCorner.TopLeft| UIRectCorner.TopRight和OC写法还是一样的,在textfield的左上和右上添加圆角

Swift3.0 :

let maskPath = UIBezierPath(roundedRect: (cell?.bounds)!, byRoundingCorners: [.topLeft, .topRight], cornerRadii:CGSize(width:10, height:10))

let masklayer =CAShapeLayer()
masklayer.frame= (cell?.bounds)!
masklayer.path= maskPath.cgPath
cell?.layer.mask= masklayer

这个方法里面[.topLeft, .topRight]也是表示与语法,在cell的左上和右上添加圆角,而且在Swift3.0
上面的写法都会报错,这应该也算去C写法,一个数组里面有两个选项添加在圆角类型上,而且这也更符合byRoundingCorners这个复数s。

相关文章

  • swift3 细节改动 竖线|与语法的改动

    主要说一下竖线与语法的改动下面的例子都是添加圆角的方法 在OC中: 在Swift3.0以前: 可以看出UIRect...

  • 改动

    1、加删除页面 页面html改动部分(1)表格改动地方 (2)帖子改动部分 2、个人新增和改动部分 3、设置 9/...

  • 改动

    车水马龙的城市 心灰意冷 我在虐风四起的荒野 安身立命 孤独不听话 还有一些寂寞 下落不明 微风吹皱了湖水 夜色掩...

  • 改动

    《改动》 我想,还有什么最后可以改动一下,这一天 当我最后终于将自己甩到床上,像甩一摊讨厌的泥巴 还有什么可以改动...

  • 秦淮八艷之五

    临摹简友九南烛作品 细节之处有所改动

  • 秦淮八艷之四

    临摹简友九南烛作品 细节之处有所改动

  • 秦淮八艷之六

    临摹简友九南烛作品 细节之处有所改动

  • 产品迭代

    表现层分析: 视觉变化,包括细节改动 交互变化,架构调整,流程动效优化 分析每一个改动的用意是什么(主观结论) 范...

  • 最近的工作总结

    与他人协作: 1. 为了防止设计遗漏 对于原型的改动需要将改动的list给UI设计师,让其清楚哪些地方改动。 ...

  • 「代码改动」删改问题

    每次改动代码的时候我们改之前要了解我们改动为什么要改动,怎么改动,改动导致结果。在思考完后保存已经完善的代码后再进...

网友评论

    本文标题:swift3 细节改动 竖线|与语法的改动

    本文链接:https://www.haomeiwen.com/subject/vtxfvttx.html