この関数を使用して目的の 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であることがわかりました。なぜですか? そして解決策は何ですか?