kevinzhow / PNChart

A simple and beautiful chart lib used in Piner and CoinsMan for iOS
MIT License
9.71k stars 1.76k forks source link

请教代码问题 #435

Open FlyOceanFish opened 6 years ago

FlyOceanFish commented 6 years ago

PNLineChart中 image

CATransaction 事务是不需要的是吧?还有UIGraphicsBeginImageContext在这个代码当中的作用是什么呢? image

还有这个circleCenter其实就是x、y的 image

CGContextStrokePath其实调用一次就行了,没必要每次都得调用一次 CGContextRef ctx = UIGraphicsGetCurrentContext(); UIGraphicsPopContext(); UIGraphicsPushContext(ctx); drawRect中如果不写pop和push会有什么问题吗?我看了资料说drawRect方法下是不用push的,不知作者在这调用有何用处呢?