UISlider 的 editDidEnd 事件在 iPad 中不起作用
我想在滑动 UISlider 结束时触发一种方法。我在 xib 中使用了 UISlider 的“editingDidEnd”事件并将其附加到 IBAction 方法,但该方法没有被调用。任何人都可以帮助我如何知道滑动何时结束UISlider 结束了?
I want to trigger one method when sliding the UISlider is ended.I used "editingDidEnd"event of UISlider in xib and attached it to a IBAction method but the method is not being called.Can any one please help me how to know when sliding is ended on UISlider?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以改为附加到“UIControlEventValueChanged”滑块事件,并在事件处理程序中使用以下代码:
You can attach to the "UIControlEventValueChanged" slider event instead and use the following code in your event handler:
UISlider 继承自 UIControl,因此您应该能够在“UIControlEventTouchUpInside”上添加和操作
尝试类似的操作:
希望这有帮助,
文森特
UISlider inherits from UIControl so you should be able to add and action on "UIControlEventTouchUpInside"
Try something like :
Hope this helps,
Vincent