views:

82

answers:

1

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.

Dan's Note Taker Lite.

A: 

I would try some of these settings.

Not the bottom setting of AllowAntialiasing.

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