iOS 画笔轨迹优化
iOS 画笔轨迹优化一 、常规画法- (void)draw_draw:(CGPoint *)points context:(CGContextRef)context count:(NSInteger)count { CGContextFillPath(context); CGContextAddLines(context, points, count);//添加线 CGContextDrawPath(context, kCGPathStroke); //根据坐标绘制路径}二