使用CoreGraphic在For循环中绘制多行

时间:2016-12-06 13:59:17

标签: xcode core-graphics draw

我使用coreGraphic绘制线条。到目前为止一切都很好......我可以很好地创建一条线,问题是我无法将它们乘以插入数组的对象数量。< / p>

为了做到这一点,我创建了一个for循环,但总是想象一条线......你能帮助我吗?

CGContextRef context = UIGraphicsGetCurrentContext();

for (int i = 0; i < 100; i++ ) {

    CGContextMoveToPoint(context, 20, 20);
    CGContextAddLineToPoint(context, 20, self.frame.size.height -20);

    CGContextSetStrokeColorWithColor(context, [[UIColor whiteColor] CGColor]);
}

    CGContextStrokePath(context);

0 个答案:

没有答案