如何捕获 pageControl 内的 tableView 的侧向滑动手势?
我有一个 tableView,它是 pageControl 内的视图之一。我希望能够捕获并响应侧面滑动手势(如果它位于 tableView 内),并且让 pageControl 响应(如果它位于 tableView 外部)。
我该怎么做?
I have a tableView that is one of the views inside a pageControl. I want to be able to capture and respond to a sideways swipe gesture if it's within the tableView, and have the pageControl respond if it is outside of the tableView.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我看来,由于滑动表格进行操作和滑动表格更改页面几乎是相同的动作,因此您只需禁用滚动视图上的滚动即可,
scrollview.scrollEnabled = NO;
并为您的表视图创建一个手势识别器,UISwipeGestureRecognizer *recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:自我操作:@selector(myAction:)]
;我尚未测试此代码,因此如果您遇到任何问题,请告诉我。As I see it, since swiping the table for an action and swiping the table to change pages is pretty much the same motion, you would just have to disable scrolling on the scrollview,
scrollview.scrollEnabled = NO;
and create a gesture recognizer for your table view,UISwipeGestureRecognizer *recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget: self action: @selector(myAction:)]
; I haven't tested this code so please let me know if you run into any problems.