iOS开发页面滑动返回跟scrollView左右划冲突问题
Posted Vijay的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS开发页面滑动返回跟scrollView左右划冲突问题相关的知识,希望对你有一定的参考价值。
-(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer { // 首先判断otherGestureRecognizer是不是系统pop手势 if ([otherGestureRecognizer.view isKindOfClass:NSClassFromString(@"UILayoutContainerView")]) { // 再判断系统手势的state是began还是fail,同时判断scrollView的位置是不是正好在最左边 if (otherGestureRecognizer.state == UIGestureRecognizerStateBegan && self.contentOffset.x == 0) { return YES; } } return NO; }
以上是关于iOS开发页面滑动返回跟scrollView左右划冲突问题的主要内容,如果未能解决你的问题,请参考以下文章
android开发中,怎么实现上下滑动,不是ScrollView,我要的是一次滑动整个页面,跟横向滑动效果一样。。
ios 中scrollview上面嵌套tableView,左右滑动出现数据多次刷新的问题