Open FlyOceanFish opened 6 years ago
PNLineChart中
CATransaction 事务是不需要的是吧?还有UIGraphicsBeginImageContext在这个代码当中的作用是什么呢?
还有这个circleCenter其实就是x、y的
CGContextStrokePath其实调用一次就行了,没必要每次都得调用一次 CGContextRef ctx = UIGraphicsGetCurrentContext(); UIGraphicsPopContext(); UIGraphicsPushContext(ctx); drawRect中如果不写pop和push会有什么问题吗?我看了资料说drawRect方法下是不用push的,不知作者在这调用有何用处呢?
CGContextRef ctx = UIGraphicsGetCurrentContext(); UIGraphicsPopContext(); UIGraphicsPushContext(ctx);
PNLineChart中
CATransaction 事务是不需要的是吧?还有UIGraphicsBeginImageContext在这个代码当中的作用是什么呢?
还有这个circleCenter其实就是x、y的
CGContextStrokePath其实调用一次就行了,没必要每次都得调用一次
CGContextRef ctx = UIGraphicsGetCurrentContext(); UIGraphicsPopContext(); UIGraphicsPushContext(ctx);
drawRect中如果不写pop和push会有什么问题吗?我看了资料说drawRect方法下是不用push的,不知作者在这调用有何用处呢?