长按和短按 UIBUTTON

发布于 2024-12-21 16:27:37 字数 124 浏览 1 评论 0原文

我需要实现一个按钮的长按和短按。如何处理它。我使用 longPressGestureRecognizer 实现了长按..现在我不知道如何对短按执行相同的操作..就像短按一样,它必须加载 view1 和长视图2。

谢谢。

I need to implement long and short press for one button. how to go about with it. I implemented long press using longPressGestureRecognizer .. now i dont know how to do the same for short press.. its like for short press it has to load view1 and for long view2.

thank you.

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

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

发布评论

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

评论(1

云裳 2024-12-28 16:27:37

我认为短按是指点击按钮。如果您使用的是笔尖,则可以将内部触摸或触摸的按钮操作事件连接到 IBAction。如果没有,您可以使用此处详细介绍的 addTarget:action:forControlEvents:

http://developer.apple.com/library/ios/documentation/UIKit/Reference/UIControl_Class/Reference/Reference.html#//apple_ref/occ/instm/UIControl/addTarget:action:forControlEvents< /a>:

如果您决定不使用按钮或不使用 UIControl 方法,您可以将 UITapGestureRecognizer 附加到具有不同目标的同一视图 行动。

By short press I assume you mean a tap on the button. If you are using a nib you can connect the button action event for touch or touch up inside to an IBAction. If not you can use addTarget:action:forControlEvents detailed here:

http://developer.apple.com/library/ios/documentation/UIKit/Reference/UIControl_Class/Reference/Reference.html#//apple_ref/occ/instm/UIControl/addTarget:action:forControlEvents:

If you decide not to use a button or not to use the UIControl methods, you can attach a UITapGestureRecognizer to the same view with a different target action.

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