如何在 iPhone 中处理 uislider 的触摸事件?

发布于 2024-08-06 21:00:50 字数 51 浏览 6 评论 0原文

我想在触摸结束时当用户滑动滑块时触发计时器。 有没有办法处理uislider的触摸事件?

i want to fire a timer as user slides the slider when the touch ends.
is there a way to handle touch events of uislider?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

眼藏柔 2024-08-13 21:00:50

确保滑块的 连续 属性设置为 YES;然后以通常的方式使用 -addTarget:action:forControlEvents: 和... UIControlEventValueChanged?...。滑块应该不断调用您提供的任何操作方法。

Make sure your slider's continuous property is set to YES; then use -addTarget:action:forControlEvents: with... UIControlEventValueChanged?... in the usual way. The slider should continuously call whatever action method you give it.

幼儿园老大 2024-08-13 21:00:50

我将 Continuous 属性设置为 NO 并保留 UIControlEventValueChanged,它仅在用户释放滑块时才触发事件

I set the continuous property to NO and kept UIControlEventValueChanged and it manages to only fire off the event when the user releases the slider

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