我正在尝试识别 UIScrollView 中的滑动手势,我使用下面的代码添加了 ScrollView ,并在我的 Storyboard中添加了滑动手势,并在识别手势时使用自定义转换。
.h 文件
@interface PLProfileViewController : UIViewController {
IBOutlet UIScrollView *scroller;
}
.m 文件
- (void)viewDidLoad {
[super viewDidLoad];
[scroller setScrollEnabled:YES];
[scroller setContentSize:CGSizeMake(320, 875)];
}
ScrollView 本身可以正常工作,但是自从添加了它之后,在工作之前工作的手势识别器都不再工作了。 你知道我该如何解决这个问题吗?
非常感谢您,
将 UIGestureRecognizer
添加到您的 UIScrollView
中,但也可以从 UIGestureRecognizerDelegate 实现以下方法:
- (BOOL)gestureRecognizerUIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizerUIGestureRecognizer *)otherGestureRecognizer;
关于ios - 识别 UIScrollView 中的滑动手势,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30595316/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |