首页 > 代码库 > iOS 画线
iOS 画线
@interface ShowLineView : UIView
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetLineCap(context, kCGLineCapSquare);//设置线条样式
CGContextSetLineWidth(context, 0.2); //设置线条粗细宽度
CGContextSetFillColorWithColor(context, [UIColor redColor].CGColor); //设置颜色
CGContextBeginPath(context); //开始一个起始路径
CGContextMoveToPoint(context, 10, 30); //起始点设置为(0,0):注意这是上下文对应区域中的相对坐标,
CGContextAddLineToPoint(context, 300, 30); //设置下一个坐标点
CGContextStrokePath(context); //连接上面定义的坐标点
}
-----------------
-(void)showLine{
ShowLineView *view = [[ShowLineView alloc] initWithFrame:CGRectMake(0, 30, 320, 100)];
view.backgroundColor = [UIColor cyanColor];
[self.view addSubview:view];
}
ShowLineView *view = [[ShowLineView alloc] initWithFrame:CGRectMake(0, 30, 320, 100)];
view.backgroundColor = [UIColor cyanColor];
[self.view addSubview:view];
}
iOS 画线
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。