如何在 iPhone 中处理 uislider 的触摸事件?
我想在触摸结束时当用户滑动滑块时触发计时器。 有没有办法处理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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保滑块的
连续
属性设置为YES
;然后以通常的方式使用-addTarget:action:forControlEvents:
和...UIControlEventValueChanged
?...。滑块应该不断调用您提供的任何操作方法。Make sure your slider's
continuous
property is set toYES
; then use-addTarget:action:forControlEvents:
with...UIControlEventValueChanged
?... in the usual way. The slider should continuously call whatever action method you give it.我将 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