我试图写一个类似的手绘图应用程序。但是画线总是有点慢。

如果您编写了类似的应用程序并优化了线条图,请解释一下。

Dan's Note Taker Lite

最佳答案

我会尝试其中一些设置。

请注意AllowAntialiasing的底部设置。

CGContextBeginPath(context);
CGContextSetInterpolationQuality(context,  kCGInterpolationLow);
CGContextSetAllowsAntialiasing(context, true);

关于iphone - 丹·布里克林(Dan Briklin)的笔记记录者如何如此流畅地绘制线条?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3273988/

10-13 03:49