Quartz 2D 和 Core Graphics

  • Quartz2D的API是纯C语言的
  • Quartz2D的API来自于Core Graphics框架
  • 数据类型和函数基本都以CG作为前缀
    • CGContextRef
    • CGPathRef
    • CGContextStrokePath(ctx);
    • ……

继承关系及导入

  • 因为UIKit依赖于Core Graphics,所以当引入时,Core Graphics框架会被自动引入,即UIKit内部已经引入了Core Graphics框架的主头文件:

你可能感兴趣的:(Quartz 2D 和 Core Graphics)