首页 > 代码库 > iOS 绘制虚线
iOS 绘制虚线
开发中经常用到虚线
创建一个imageView,直接调用下面的代码就可以了!
- (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 绘制虚线
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。