gpt4 book ai didi

iphone - 如何确定用户是否按下 UITableViewCell 2 秒?

转载 作者:太空狗 更新时间:2023-10-30 03:51:36 26 4
gpt4 key购买 nike

我正在使用手势识别器:

viewDidLoad中初始化:

UILongPressGestureRecognizer *longPressRecognizer = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPress:)];
[self.view addGestureRecognizer:longPressRecognizer];

这是 longPress 的样子:

- (void)longPress:(UILongPressGestureRecognizer*)gestureRecognizer {
if (gestureRecognizer.minimumPressDuration == 2.0) {
NSLog(@"Pressed for 2 seconds!");
}
}

我怎样才能把它联系起来?

- (void)tableView:(UITableView *)tblView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

didSelectRowAtIndexPath 如何获取对 gestureRecognizer.minimumPressDuration 的引用?

基本上我想要实现的是:

**If a user clicks on a cell, check to see if the press is 2 seconds.**

最佳答案

尝试通过提供 tableView:willDisplayCell:forRowAtIndexPath: 方法将其添加到 UITableViewCell 而不是 UITableView:

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
[cell addGestureRecognizer:longPressRecognizer];
}

关于iphone - 如何确定用户是否按下 UITableViewCell 2 秒?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3314524/

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