我有一个 imageView,我想使用 CGPoints 在该 imageView 中的图像上画线,但我遇到错误,例如:无效的上下文等。任何没有 CGContext 方法的画线的解决方案。
CGContextRef cntxt = UIGraphicsGetCurrentContext();
CGContextMoveToPoint(cntxt, p1.x, p1.y);
CGContextAddLineToPoint(cntxt, p2.x, p2.y);
CGContextStrokePath(cntxt);
谢谢