Core Graphics vs. UIKit
Core Graphics | UIKit |
---|---|
基于 C 的 API | UIBezierPath 类 |
面向过程 | 面向对象 |
UIKit 绘制的基石 | 构建在 Core Graphics 之上 |
可以通过参数接收 Context 绘制 | 只能基于当前 Context 绘制 |
坐标系
UIKit 坐标系和数学坐标系相反
Core Graphics 默认坐标系和数学坐标系一样
一般基于 UIKit 坐标系进行绘制
坐标系转换:
Swift:
1 | context?.translateBy(x: 0, y: bounds.height) |
OC:
1 | CGContextTranslateCTM(context, 0, bounds.size.height) |
绘制过程
- 获取上下文
- 设置区域
- 绘制所需图形
- 设置填充或线条颜色
- 填充或绘制线条
绘制代码
椭圆形
1 | func makeEllipse(_ context: CGContext?, _ rect: CGRect) { |
圆形和空心圆
1 | func drawCircle(_ context: CGContext?, at point: CGPoint) { |
三角形
1 | func drawTriangle(_ context: CGContext?) { |
矩形
1 | func drawRectangle(_ context: CGContext?) { |