0

我尝试使用此功能在目标 c 中画线

-(IBAction) DrawLine
{
    CGContextRef c = UIGraphicsGetCurrentContext();

        CGFloat red[4] = {1.0f, 0.0f, 0.0f, 1.0f};
        CGContextSetStrokeColor(c, red);
        CGContextBeginPath(c);
        CGContextMoveToPoint(c, 5.0f, 5.0f);
        CGContextAddLineToPoint(c, 50.0f, 50.0f);
        CGContextStrokePath(c);
}

但我发现 c 为 null 或 nil 为什么?解决方案是什么?

4

1 回答 1

0

我找到了答案

http://www.techotopia.com/index.php/An_iOS_5_iPhone_Graphics_Drawing_Tutorial_using_Quartz_2D

于 2012-05-09T22:09:19.207 回答