iOS绘图—— UIBezierPath 和 Core Graphics

一、drawRect方法什么时候触发

  • 1.当view第一次显示到屏幕上时;
  • 2.当调用view的setNeedsDisplay或者setNeedsDisplayInRect:方法时。


二、 六种绘图形式

至此,我们有了两大绘图框架的支持以及三种获得图形上下文的方法 (drawRect:、drawRect: inContext:、UIGraphicsBeginImageContextWithOptions) 。那么我们就有6种绘图的形式:
1 . 在UIView的子类方法drawRect:中绘制一个蓝色圆, 使用  UIKit 方式:
1
2
3
4
5
override func drawRect (rect: CGRect) {
        let p = UIBezierPath (ovalInRect: CGRectMake ( 0 , 0 , 100 , 100 ))
        UIColor .blueColor().setFill()
        p.fill()
}
2 . 在UIView的子类方法drawRect:中绘制一个蓝色圆, 使用  Core Graphics 方式:
1
2
3
4
5
6
override func drawRect (rect: CGRect) {
  let con = UIGraphicsGetCurrentContext ()!
       CGContextAddEllipseInRect (con, CGRectMake ( 0 , 0 , 100 , 100 ))
        CGContextSetFillColorWithColor (con, UIColor .blueColor(). CGColor )
  CGContextFillPath (con)
}
3 . 在UIView子类的drawLayer:inContext:方法中,使用 UIKit 方式:
1
2
3
4
5
6
7
override func drawLayer (layer: CALayer, inContext ctx: CGContext) {
    UIGraphicsPushContext (ctx) //将ctx设置为当前context
    let p = UIBezierPath (ovalInRect: CGRectMake ( 0 , 0 , 100 , 100 ))
    UIColor .blueColor().setFill()
    p.fill()
    UIGraphicsPushContext (ctx)
}
4 . 在UIView子类的drawLayer:inContext:方法中,使用 Core Graphics 方式:
1
2
3
4
5
override func drawLayer (layer: CALayer, inContext ctx: CGContext) {
        CGContextAddEllipseInRect (ctx, CGRectMake ( 0 , 0 , 100 , 100 ))
        CGContextSetFillColorWithColor (ctx, UIColor .blueColor(). CGColor )
  CGContextFillPath (ctx)
}
5 . 使用 UIGraphicsBeginImageContextWithOptions 创建画板&用 UIKit 方式绘制:
1
2
3
4
5
6
7
UIGraphicsBeginImageContextWithOptions ( CGSizeMake ( 100 , 100 ), false, 0 )
let p = UIBezierPath (ovalInRect: CGRectMake ( 0 , 0 , 100 , 100 ))
UIColor .blueColor().setFill()
p.fill()
let image = UIGraphicsGetImageFromCurrentImageContext ()
UIGraphicsEndImageContext ()
//to do something with the image
6 . 使用 UIGraphicsBeginImageContextWithOptions 创建画板&用 Core Graphics 方式绘制:
1
2
3
4
5
6
7
UIGraphicsBeginImageContextWithOptions ( CGSizeMake ( 100 , 100 ), false, 0 )
let con = UIGraphicsGetCurrentContext ()
CGContextAddEllipseInRect (con, CGRectMake ( 0 , 0 , 100 , 100 ))
CGContextSetFillColorWithColor (con, UIColor .redColor(). CGColor )
CGContextFillPath (con)
let image = UIGraphicsGetImageFromCurrentImageContext ()
UIGraphicsEndImageContext ()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值