菜鸟教程小白 发表于 2022-12-12 16:36:39

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


                                            <p><p>我有一个 <code>UITableView</code>,我在其中添加了 <code>UISwipeGesture</code>,如下所示:</p>

<pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

CustomCell *cell = (CustomCell*);

UISwipeGestureRecognizer* gestureR;
gestureR = [ initWithTarget:self action:@selector(handleSwipeFrom)];
gestureR.direction = UISwipeGestureRecognizerDirectionLeft;
;
return cell;
}
</code></pre>

<p>我的选择器在滑动时响应。</p>

<p>现在我想根据 <code>SwipeGesture</code> 操作单元格。但我无法获得 <code>indexPath</code> 和 <code>UITableView</code>。我怎样才能得到这些来操纵细胞。或者他们有其他方法吗?</p>

<p>请帮助我。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以执行以下操作..</p>

<pre><code>UISwipeGestureRecognizer* gestureR;
gestureR = [ initWithTarget:self action:@selector(handleSwipeFrom:)];
gestureR.direction = UISwipeGestureRecognizerDirectionLeft;
;


-(void)handleSwipeFrom:(UIGestureRecognizer *)tap{
    CGPoint touch         = ;
    NSIndexPath *indexPath= ;
    CustomCell *cell      = ;

}
</code></pre>

<p>让我知道它是否有效。</p>

<p>编码愉快!!!</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在滑动手势上获取 IndexPath 和 UItableView,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/33117950/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/33117950/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在滑动手势上获取 IndexPath 和 UItableView