gpt4 book ai didi

ios - 如何在滑动手势上获取 IndexPath 和 UItableView

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

我有一个 UITableView,我在其中添加了 UISwipeGesture,如下所示:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

CustomCell *cell = (CustomCell*)[tableView dequeueReusableCellWithIdentifier:kCellIndetifier];

UISwipeGestureRecognizer* gestureR;
gestureR = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeFrom)];
gestureR.direction = UISwipeGestureRecognizerDirectionLeft;
[cell addGestureRecognizer:gestureR];
return cell;
}

我的选择器在滑动时响应。

现在我想根据 SwipeGesture 操作单元格。但是我无法获取 indexPathUITableView。我怎样才能得到这些来操纵细胞。或者他们有任何其他方式这样做。

请帮助我。

最佳答案

你可以做如下的事情..

UISwipeGestureRecognizer* gestureR;
gestureR = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeFrom:)];
gestureR.direction = UISwipeGestureRecognizerDirectionLeft;
[cell addGestureRecognizer:gestureR];


-(void)handleSwipeFrom:(UIGestureRecognizer *)tap{
CGPoint touch = [tap locationInView:yourtableview];
NSIndexPath *indexPath = [yourtableview indexPathForRowAtPoint:touch];
CustomCell *cell = [yourtableview cellForRowAtIndexPath:indexPath];

}

让我知道它是否有效。

编码愉快!!!

关于ios - 如何在滑动手势上获取 IndexPath 和 UItableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33117950/

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