如何使用 Xcode 在 ipad 上显示动态图表
我正在学习如何为 ipad 进行开发,并且我有一个相当大的项目要做。
我已经通过 IOS 模拟器、xcode 和界面构建器在 ipad 上加载了屏幕和按钮。我的下一个任务是在 ipad 上显示一个图表,该图表每 30 秒左右更新一次其绘图和点。
如果您听说过加州 ISO,它显示了美国的电力需求高峰 http:// /www.caiso.com/outlook/SystemStatus.html 我基本上想创建一个以类似方式表示数据的图表:它在 ipad 上自行更新。
我再次使用 xcode 和界面构建器。我完全不知道从哪里开始哈哈
I am learning how to develop for the ipad and I have a pretty big project to do.
I already have screens and buttons loaded on the ipad via IOS simulator, xcode and interface builder. My next task is to display a graph on the ipad that is updating its plots and points every 30 seconds or so.
If you've ever heard of California ISO, it shows peak demand for electricity in the united states http://www.caiso.com/outlook/SystemStatus.html and I basically want to create a graph that represents data in a similar way: it updates by itself on the ipad.
Again I am using xcode and interface builder. I don't know where to begin at all haha
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每当您有新数据要显示时,请在图表上调用
-reloadData
。它将查询您的数据源以获取新数据并重新绘制绘图。Call
-reloadData
on your graph whenever you have new data to display. It will query your datasource for the new data and redraw the plots.