gpt4 book ai didi

ios - SWRevealViewController 平移手势识别器问题

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:04:39 26 4
gpt4 key购买 nike

我正在使用 John-Lluch 的 SWRevealViewController。我需要使用平移手势来查看侧边栏,并且我正在使用滑动来查看我的上一篇和下一篇文章。但是,只能检测到平移手势。

更新:如果我禁用平移手势,我的滑动手势就会起作用。

平移手势

 [self.view addGestureRecognizer:self.revealViewController.panGestureRecognizer];

滑动手势

UISwipeGestureRecognizer *left = [[[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeLeft:)] autorelease];
left.direction = UISwipeGestureRecognizerDirectionLeft;

UISwipeGestureRecognizer *right = [[[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeRight:)] autorelease];
right.direction = UISwipeGestureRecognizerDirectionRight;

[self.view addGestureRecognizer:left];
[self.view addGestureRecognizer:right];

最佳答案

[self.view addGestureRecognizer:self.revealViewController.panGestureRecognizer];

[self.view addGestureRecognizer:left];

注意到区别了吗?在您的 .h 中将 SwipeGesture 实现为一个属性,或者在您的 .xib 中实现它并将其链接到您的 .h

关于ios - SWRevealViewController 平移手势识别器问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24906318/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com