3

我正在尝试使用 CPTScatterPlot 对象为新数据的“绘图”设置动画。

我现在正在查看您可以在示例子目录中找到的RealTime 示例。它是 CorePlotGallery 的例子之一。确保您使用的是 iOS。

这个实时图非常简单:它每秒在图中注入一些随机数据。我想要完成的是对线条的绘制进行动画处理,以便看起来线条是实时绘制的。

如果您仔细查看该示例,您会注意到一旦将新数据插入其中,“段”就会出现在图表中。如何为这些片段的“创建”设置动画?

谢谢

4

1 回答 1

0

Until this is added natively to Core Plot (see this outstanding issue), use a timer to animate the line. Each time the timer fires, use the -reloadDataInIndexRange: method to update the last point on the line, moving it closer to the final value each time.

于 2013-05-11T13:59:29.310 回答