滑块的变化必须反映在核心图上
我在一个视图中有滑块,在其子视图(视图 2)中有使用核心图的条形图。 首先,条形图显示 viewDidLoad 方法中默认数据的图形(它具有滑块的初始值)。
当滑块更改时,图表应该相应地反映条形图。但是我无法反映图表中滑块的变化。有什么方法可以完成我的工作。我可以随时更改其他视图(视图 2)中的标签滑块更改通过一些 IBAction 来实现此滑块更改。
I have slider in one view and Bar chart using core plot in its sub view(view 2).
At first the bar chart shows graph for default data in viewDidLoad method(it has initial values for slider).
When the slider changes the graph should reflect the bar chart accordingly.But i could not reflect the changes in slider in the graph.Is there any way to get my thing done.I can change the label in other view(view 2) when ever slider changes by some IBAction for this slider change.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 IBAction 连接到滑块移动时触发的每个滑块。在操作方法内,在绘图上调用 -reloadData。该图将自动查询数据源以获取新数据。您的数据源应该读取滑块并返回它们的当前值作为绘图数据。
Connect an IBAction to each slider that fires when the slider moves. Inside the action method, call -reloadData on the plot. The plot will automatically query the datasource for new data. Your datasource should read the sliders and return their current values as the plot data.