gpt4 book ai didi

iphone - 识别我的 UILongPressGestureRecognizer 是从哪个单元格按下的,无法向其添加标签

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:19:18 33 4
gpt4 key购买 nike

我将我的 UILongPressGestureRecognizer 添加到单元格中,如下所示:

        UILongPressGestureRecognizer *longpressGesture = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPressHandler:)];
longpressGesture.minimumPressDuration = 2.5;
longpressGesture.t
[longpressGesture setDelegate:self];
[cell addGestureRecognizer:longpressGesture];
[longpressGesture release];

我想知道 UILongPressGestureRecognizer 被按下了哪个单元格,我不能给它添加标签,是否有一些聪明的技巧可以找出这个信息?

最佳答案

您将它添加到单元格中,因此单元格是识别器的 View :

- (void)longPressHandler:(UILongPressGestureRecognizer *)gr {

UITableViewCell *cell = (UITableViewCell *)gr.view;
// ...
}

关于iphone - 识别我的 UILongPressGestureRecognizer 是从哪个单元格按下的,无法向其添加标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11942084/

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