gpt4 book ai didi

ios - iOS 中滑动手势识别器的问题

转载 作者:行者123 更新时间:2023-11-29 13:47:41 26 4
gpt4 key购买 nike

我正在使用以下代码:

UISwipeGestureRecognizer *swipeRecognizer = 
[[UISwipeGestureRecognizer alloc]
initWithTarget:self
action:@selector(swipeDetected:)];
swipeRecognizer.direction = UISwipeGestureRecognizerDirectionRight;
[self.view addGestureRecognizer:swipeRecognizer];
[swipeRecognizer release];

还有,

- (void)swipeDetected:(UIGestureRecognizer *)sender {
NSLog(@"Right Swipe");
}

但是当我在模拟器中滑动时我没有看到任何输出。谁能帮帮我?谢谢。

最佳答案

由于您有一个 UITableView,它可能会阻止该操作。尝试将 swipeGesture 直接添加到 tableView

关于ios - iOS 中滑动手势识别器的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6617974/

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