如何在iPhone上画线?

我是iPhone编程的初学者,为了在Quartz和UIKit中学习,我想在电话屏幕上画一条线。

如何开始绘图?


杨魅力
浏览 585回答 2
2回答

哈士奇WWW

您也可以使用绘制一条线UIBezierPath。下面将绘制垂直居中的水平线:- (void)drawRect:(CGRect)rect {    CGFloat rectHeight = CGRectGetHeight(rect);    CGFloat rectWidth = CGRectGetWidth(rect);    UIBezierPath *line = [UIBezierPath bezierPath];    [line moveToPoint:CGPointMake(0, rectHeight / 2)];    [line addLineToPoint:CGPointMake(rectWidth, rectHeight / 2)];    [[UIColor lightGrayColor] setStroke];    [line stroke];}分享编辑
打开App,查看更多内容
随时随地看视频慕课网APP