为什么CG Path总是逐渐消失?

时间:2012-03-30 20:03:18

标签: ios core-graphics uibezierpath

我在这里有一些基本的绘图代码有一个奇怪的问题:

This is a single stroke of one of the many in the for-loop

这个代码只是for循环中的以下内容,我只想在视图中绘制一些垂直线:

     UIBezierPath* verticalLine = [UIBezierPath bezierPath];
    [verticalLine moveToPoint:CGPointMake(currentXPosition, 0)];
    [verticalLine addLineToPoint:CGPointMake(currentXPosition, self.frame.size.height)];
    [verticalLine closePath];
    verticalLine.lineWidth = 1;
    [[UIColor blackColor] setStroke];
    [verticalLine stroke];

我无法想象它的原因。你能吗?

提前致谢, 基督教

编辑:水平线条绘制效果非常好,宽度正常,不会淡出。

0 个答案:

没有答案