如何获取CPTLayer上的触摸事件?
我正在使用核心图绘制条形图,我想知道有没有办法可以在条形图上进行触摸事件?谢谢。
I'm using core plot to draw a bar chart, I was wondering is there a way I can have touch events on the bars? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用委托对象来接收 Core Plot 图中触摸事件的通知。对于条形图,请实现 -barPlot:barWasSelectedAtRecordIndex: 方法。第一个参数是被触摸的图(因此您可以对多个图使用同一个委托),第二个参数是条形图的索引。几个示例应用程序演示了用法。
You use a delegate object to receive notification of touch events in Core Plot plots. For bar plots, implement the
-barPlot:barWasSelectedAtRecordIndex:
method. The first parameter is the plot that was touched (so you can use the same delegate for more than one plot) and the second parameter is the index of the bar. Several of the example apps demonstrate usage.