清除 iPhone 中的线条
当我更改月份时,我需要清除当前的折线图并将其替换为新的折线图(每次更改月份时都会调用 createLineGraph 方法)。发生的情况是,上个月的图表的一部分(只是一部分)与新的折线图重合。我正在使用 CoreGraphics + Quartz2D 来创建线条。有人知道这个光栅问题的解决方案吗?
I need to clear the current line graph and replace it with a new line graph, as and when I change the month (The createLineGraph method is called each time I change the month). What happens is that, part (just part) of the previous month's graph coincides with the new line graph. I'm using CoreGraphics + Quartz2D to create the lines. Anyone know a solution to this grating issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议在单独的 CALayers 上绘制线条,这样您就可以隐藏/删除 CALayers。
I would suggest drawing your lines on separate CALayers, that way you can just hide/remove the CALayers.