我在 UIView 上的 drawRect 实现中绘制了一条路径:
CGContextSetLineWidth(context, 0.5);
CGContextStrokePath(context);
在我的 CGContext 上启用抗锯齿,我似乎无法绘制 1 px 的线。
我尝试使用以下方法关闭抗锯齿:
CGContextSetShouldAntialias(context, NO);
但后来我的角落看起来很糟糕:
如何保持抗锯齿打开但停止 1 像素线的这种子像素模糊?