如何为所有屏幕的 iPhone 应用程序添加垂直滑动手势?
我想向我的应用程序添加一个手势,以便当用户垂直滑动时它会触发一个方法来执行某些操作。滑动可以向上或向下。我从来没有用手势做过任何事情,所以这是我第一次使用手势,而不是 UITableView 中包含的用于删除行的手势。
另一个问题是我的大多数屏幕都是 UITableView,因此用户可以简单地滚动 UITableView。所以我想知道是否可以使用两根手指滑动(垂直)来检测运行代码的手势,而不是使用单根手指滑动来滚动 UITableView?
先感谢您。
尼尔
I'd like to add a gesture to my app so when the user swipes vertically it triggers a method to do something. The swipe can be up or down. I've never done anything with gestures so this is my first use of a gesture other than what is included in a UITableView for deleting rows.
The other problem is that most of my screens are UITableViews so the user could be simply scrolling the UITableView. So I am wondering if I could use a two finger swipe (vertical) to detect the gesture to run the code vs. a single finger swipe to scroll the UITableView?
Thank you in advance.
Neal
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这在 ApplicationDidLaunch 中:
然后实现
使用 UIGestureRecognizer 和 UISwipeGestureRecognizer。
此外,如果您希望检测滑动方向,则必须设置两个单独的手势识别器。您无法从滑动手势识别器获取滑动方向,只能获取其注册识别的方向。
This goes in ApplicationDidLaunch:
then implement
Use the documentation for UIGestureRecognizer and UISwipeGestureRecognizer.
Also if you wish to detect the direction of the swipe you will have to setup two separate gesture recognizers. You can not get the direction of a swipe from a swipe gesture recognizer, only the directions it is registered to recognize.
在 swift 4.0 中,这发生在 AppDelegate 的 didFinishLaunchingWithOptions 方法上:
以及操作:
In swift 4.0, that goes on the method didFinishLaunchingWithOptions of the AppDelegate:
And the action: