使用点击手势选择行

Posted

技术标签:

【中文标题】使用点击手势选择行【英文标题】:using tap gesture to select row 【发布时间】:2014-02-26 07:19:25 【问题描述】:

我想点击每个单元格来激活push segue,但因为view controller 始终处于编辑模式,我无法点击单元格。在editing mode 中,我放大了reorder controller 以覆盖整个cell,然后使其不可见,因此您可以从单元格中的任何位置拖动以重新排序tableview,因此当我在编辑模式下单击单元格时,我'我实际上是在点击重新排序控制器。请不要告诉我将 allowsSelectionDuringEditing 的 tableview 属性设置为 YES,因为我已经这样做了,它仍然不允许我选择单元格,因为它被作为子视图添加到单元格的重新排序控制器所覆盖.

我的解决方案是通过cell 中的tap 手势准备一个新的push segue,即使该单元格被其reorder controller 覆盖,它仍然会激活。但是,无论我单击哪个单元格,发送到segue 调用的view 的数据始终来自第一个cell。为什么会发生这种情况?任何帮助表示赞赏。

这就是我更改重新排序控制的方式

-(void) resizeReorderControl: (UITableView *)tableView reorderCell:(UITableViewCell *)bCell
    //  Grip customization code goes in here...
    UIView* reorderControl = [bCell huntedSubviewWithClassName:@"UITableViewCellReorderControl"];

    UIView* resizedGripView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, CGRectGetMaxX(reorderControl.frame), CGRectGetMaxY(reorderControl.frame))];
    [resizedGripView addSubview:reorderControl];
    [bCell addSubview:resizedGripView];

    CGSize sizeDifference = CGSizeMake(resizedGripView.frame.size.width - reorderControl.frame.size.width, resizedGripView.frame.size.height - reorderControl.frame.size.height);
    CGSize transformRatio = CGSizeMake(resizedGripView.frame.size.width / reorderControl.frame.size.width, resizedGripView.frame.size.height / reorderControl.frame.size.height);

    //  Original transform
    CGAffineTransform transform = CGAffineTransformIdentity;

    //  Scale custom view so grip will fill entire cell
    transform = CGAffineTransformScale(transform, transformRatio.width, transformRatio.height);

    //  Move custom view so the grip's top left aligns with the cell's top left
    transform = CGAffineTransformTranslate(transform, -sizeDifference.width / 2.0, -sizeDifference.height / 2.0);

    [resizedGripView setTransform:transform];

    for(UIImageView* cellGrip in reorderControl.subviews)
    
        if([cellGrip isKindOfClass:[UIImageView class]])
            [cellGrip setImage:nil];
    

【问题讨论】:

【参考方案1】:

这是适合我的解决方案。

为了在 ios7 中找到重新排序控件,我更改了代码并添加了一项检查

-(void) resizeReorderControl: (UITableView *)tableView reorderCell:(UITableViewCell *)bCell
    ...
    UIView* reorderControl = [bCell huntedSubviewWithClassName:@"UITableViewCellReorderControl"];
        if (!reorderControl) 
            reorderControl = [bCell huntedSubviewWithClassName:@"UITableViewCellScrollView"]; // for iOS7
        
    ...
    //Then I added my gesture recognizer:
    ...
    UITapGestureRecognizer *tapGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)];
    tapGestureRecognizer.delegate = self;
    [reorderControl addGestureRecognizer:tapGestureRecognizer];
    ...

添加到您的视图控制器声明 UIGestureRecognizerDelegate 委托,您的视图控制器界面应如下所示:

@interface ViewController <UITableViewDataSource, UITableViewDelegate, UIGestureRecognizerDelegate>

然后实现委托方法:

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer 
    return YES;

另外你需要实现我们在UITapGestureRecognizerinit方法中指定的方法:

- (void)handleTap:(UITapGestureRecognizer *)sender 
    NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:[sender locationInView:self.tableView]];
    [self.tableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionNone];
    // If you have custom logic in table view delegate method, also invoke this method too
    [self tableView:self.tableView didSelectRowAtIndexPath:indexPath];

【讨论】:

我已经尝试将 tableView 的 allowedSelectionDuringEditing 属性设置为 YES 但这不起作用,因为在编辑时,单元格被重新排序控制器覆盖(我使它不可见但它仍然存在)所以我无法选择它。单元格有一个子视图,它覆盖了阻止它被选中的单元格。 我不明白你的最后两句话。你指的是哪个楼盘?我只有一个 tableview 实例,所以我不确定你的意思? 术语reorder controller是什么意思? reorder 转到属性中的 showsReorderControl。这是您单击并拖动以通过 moveRowAtIndexPath 移动单元格的东西:toIndexPath

以上是关于使用点击手势选择行的主要内容,如果未能解决你的问题,请参考以下文章

在ios中使用点击手势选择另一个图像时如何取消选择上一个选择的图像?

是否只能使用 UITableViewController 使用两指平移手势选择多个项目?

如何在 Swift 中长按时选择表格行

包含视图块的点击手势 tableView 选择

单击不会在uitableview ios 7中选择行

为我的点击手势发送到实例的无法识别的选择器