美文网首页
iOS画虚线 记得先 QuartzCore框架的导入

iOS画虚线 记得先 QuartzCore框架的导入

作者: MrCSA | 来源:发表于2017-09-12 10:41 被阅读0次

#import

CGContextRef context =UIGraphicsGetCurrentContext();

CGContextBeginPath(context);

CGContextSetLineWidth(context, 2.0);

CGContextSetStrokeColorWithColor(context, [UIColor whiteColor].CGColor);

CGFloat lengths[] = {10,10};

CGContextSetLineDash(context, 0, lengths,2);

CGContextMoveToPoint(context, 10.0, 20.0);

CGContextAddLineToPoint(context, 310.0,20.0);

CGContextStrokePath(context);

CGContextClosePath(context);

相关文章

网友评论

      本文标题:iOS画虚线 记得先 QuartzCore框架的导入

      本文链接:https://www.haomeiwen.com/subject/vaxcsxtx.html