博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在iOS上绘制阴影
阅读量:5214 次
发布时间:2019-06-14

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

代码在playground中实现

//: Playground - noun: a place where people can playimport UIKitclass MyView : UIView{    override func drawRect(rect: CGRect) {        //获取绘制上下文        var context = UIGraphicsGetCurrentContext()                //计算要在其中绘制的矩形        var pathRect = CGRectInset(self.bounds, self.bounds.size.width*0.1, self.bounds.size.height*0.1)                //创建一个圆角矩形路径        var rectanglePath = UIBezierPath(roundedRect: pathRect, cornerRadius: 20)                //等价于保存上下文        CGContextSaveGState(context)                //准备阴影        var shadow = UIColor.blackColor().CGColor        var shadowOffset = CGSize(width: 3, height: 3)        var shadowBlurRadius : CGFloat = 5.0                //此函数创建和应用阴影        CGContextSetShadowWithColor(context, shadowOffset, shadowBlurRadius, shadow)                //绘制路径;它将带有一个阴影        UIColor.redColor().setFill()        rectanglePath.fill()                //等价于重载上下文        CGContextRestoreGState(context)    }}let viewRect = CGRect(x: 0, y: 0, width: 100, height: 100)let myEmptyView = MyView(frame:viewRect)myEmptyView.backgroundColor = UIColor.clearColor()

  效果图

转载于:https://www.cnblogs.com/torrescx/p/5364314.html

你可能感兴趣的文章
手机验证码执行流程
查看>>
python 基础 ----- 变量
查看>>
设计模式课程 设计模式精讲 2-2 UML类图讲解
查看>>
为块级元素添加链接
查看>>
Silverlight 的菜单控件。(不是 Toolkit的)
查看>>
:hover 鼠标同时触发两个元素变化
查看>>
go语言学习十三 - 相等性
查看>>
Idea 提交代码到码云(提交到github也大同小异)
查看>>
c#连接excel2007未安装ISAM解决
查看>>
Mono 异步加载数据更新主线程
查看>>
初识lua
查看>>
我是插件狂人,jDuang,jValidator,jModal,jGallery
查看>>
张季跃 201771010139《面向对象程序设计(java)》第四周学习总结
查看>>
如何解除循环引用
查看>>
android中fragment的使用及与activity之间的通信
查看>>
字典【Tire 模板】
查看>>
LeetCode:Median of Two Sorted Arrays
查看>>
jquery的contains方法
查看>>
python3--算法基础:二分查找/折半查找
查看>>
Perl IO:随机读写文件
查看>>