如何使用核心图中的数字绘制散点图
我需要在 iPhone 中使用给定的数字数组绘制散点图。我怎样才能实现这个目标?
I need to draw a scatter plot with the given array of numbers in iPhone. How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需要编写一个方法,该方法将返回
(NSNumber *)
对象并以 NSInteger (它将是您想要值的索引)作为参数。在此方法中,您将从NSMutableArray
的特定索引中检索值。现在步骤 2) 编写如下所示的方法。通过这种方法,图形将知道要绘制多少个坐标。
步骤 3) 这是您的图表将用来绘制坐标的方法。
You just need to write a method which will returns an object of
(NSNumber *)
and takes NSInteger (it will be the index for which you want the value) as parameter. Inside this method you will retrieve the value from a specific index of yourNSMutableArray
.Now step number 2) write the method as shown below. By this method the graph will know how many co - ordinates are to be plotted.
Step 3) This is the method to which your graph will look at for plotting a coordinate.