I tried to write a similar hand drawing app. But the line drawing is always a little slow.
If you'd written a similar app and got the line drawing optimized, please explain a bit.
I tried to write a similar hand drawing app. But the line drawing is always a little slow.
If you'd written a similar app and got the line drawing optimized, please explain a bit.
I would try some of these settings.
Not the bottom setting of AllowAntialiasing.
CGContextBeginPath(context);
CGContextSetInterpolationQuality(context, kCGInterpolationLow);
CGContextSetAllowsAntialiasing(context, true);