如何获取CPTLayer上的触摸事件?

发布于 2024-12-06 08:09:22 字数 47 浏览 0 评论 0原文

我正在使用核心图绘制条形图,我想知道有没有办法可以在条形图上进行触摸事件?谢谢。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

草莓酥 2024-12-13 08:09:22

您可以使用委托对象来接收 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文