Quart 2D的那些事(未完)

来源:互联网 发布:赤月传说2法宝升级数据 编辑:程序博客网 时间:2024/05/29 18:24

近来做老大说的东西用到了Quart 2D的东西

想必这玩意儿真真是极好的

所以在这里摸索一下


1.画直线

- (void)drawRect:(CGRect)rect{    [[UIColor colorWithWhite:0.8 alpha:1.0] setFill];    UIBezierPath *line = [UIBezierPath bezierPath];    [line moveToPoint:CGPointMake(10, 10)];    [line addLineToPoint:CGPointMake(310, 10)];    [line setLineWidth:3.0];    [line stroke];}



原创粉丝点击