iOS 绘制虚线
Posted YaphetsDiao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 绘制虚线相关的知识,希望对你有一定的参考价值。
开发中经常用到虚线
创建一个imageView,直接调用下面的代码就可以了!,imageView的高一般设置2像素就可以了
- (void)drawLineByImageView:(UIImageView *)imageView { UIGraphicsBeginImageContext(imageView.frame.size); //开始画线 划线的frame [imageView.image drawInRect:CGRectMake(0, 0, imageView.frame.size.width, imageView.frame.size.height)]; //设置线条终点形状 CGContextSetLineCap(UIGraphicsGetCurrentContext(), kCGLineCapRound); CGContextRef line = UIGraphicsGetCurrentContext(); // 设置颜色 CGContextSetStrokeColorWithColor(line, [UIColor darkGrayColor].CGColor); CGFloat lengths[] = {5,2};//先画4个点再画2个点 CGContextSetLineDash(line,0, lengths,2);//注意2(count)的值等于lengths数组的长度 CGContextMoveToPoint(line, 0.0, 2.0); //开始画线 CGContextAddLineToPoint(line,imageView.frame.size.width,2.0);
CGContextStrokePath(line); // UIGraphicsGetImageFromCurrentImageContext()返回的就是image UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); imageView.image = image; }
以上是关于iOS 绘制虚线的主要内容,如果未能解决你的问题,请参考以下文章