imageView があり、その imageView で CGPoints を使用して画像に線を描画したいのですが、無効なコンテキストなどのエラーが発生します。CGContext アプローチなしで線を描画するためのソリューション。
CGContextRef cntxt = UIGraphicsGetCurrentContext();
CGContextMoveToPoint(cntxt, p1.x, p1.y);
CGContextAddLineToPoint(cntxt, p2.x, p2.y);
CGContextStrokePath(cntxt);
ありがとう