0

我的视图中有一个表格视图。单元格是使用自定义单元格创建的。我需要在表格视图单元格中显示一个大字符串所以我在滚动视图中添加了文本标签。当用户点击表格视图单元格时,我还需要执行一些代码。请看下面的代码:

 [cell.textLabelLine2 setFrame:CGRectMake(cell.textLabelLine2.frame.origin.x, cell.textLabelLine2.frame.origin.y, 500, cell.textLabelLine2.frame.size.height)];
   cell.scrollView.contentSize = CGSizeMake(cell.textLabelLine2.text.length*10 , 10);
   cell.scrollView.pagingEnabled = NO;

问题是当用户触摸 Scroll View 上方时,不会调用 Tableview did select 方法。我为这个问题找到的解决方案是在滚动视图中添加一个手势识别器。但是在这个解决方案中,我们无法检查选择了哪个单元格(或哪个手势识别器)。谁能帮我找到解决这个问题的方法?

4

3 回答 3

1

在带有滚动视图的解决方案中,您无法在滚动视图中滚动,因为gestureRecognizer“获得”了触摸。因此我根本不会使用滚动视图。

使标签调整为其内容的大小,例如:

    CGSize customTextLabelSize = [cell.customTextLabel.text sizeWithFont:cell.customTextLabel.font constrainedToSize:CGSizeMake(cell.customTextLabel.frame.size.width, 999999)];
    cell.customTextLabel.frame = CGRectMake(cell.customTextLabel.frame.origin.x, cell.customTextLabel.frame.origin.y, cell.customTextLabel.frame.size.width, customTextLabelSize.height);

您还需要在 heightForRowAtIndexPath 中实现它

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    CGSize cellSize = [bigTextString sizeWithFont:customTextLabel.font constrainedToSize:CGSizeMake(generalCellWidth, 999999)];
    return cellSize.height;
}

这样您就可以使用 didSelectRowAtIndex 方法。



如果您真的想使用滚动视图,请在 cellForRowAtIndexPath: 方法中向您的单元格添加一个按钮。使按钮与单元格一样大,并添加一个按钮标签,如下所示:

    UIButton *cellButton = [UIButton buttonWithType:UIButtonTypeCustom];
    cellButton.frame = CGRectMake(0, 0, cell.frame.size.width, cell.frame.size.height);
    cellButton.tag = indexPath.row;
    [cellButton addTarget:self action:@selector(cellButtonAction:) forControlEvents:UIControlEventTouchUpInside];
    [cell.contentView addSubview:cellButton];

然后加:

-(void)cellButtonAction:(UIButton*)sender
{
    //do something with sender.tag
}
于 2012-12-10T10:35:01.070 回答
1

将滚动视图放在滚动视图中通常是个坏主意。UITableView 也只是一个 UIScrollView。只有当它们在不同的轴上滚动时才有效,即外部滚动视图垂直滚动而内部滚动视图水平滚动。

对于您的特定场景,您必须自己触发选择。一旦你有了对单元格的引用,你就可以向表格视图询问它的 indexPath。然后,您将自己调用 didSelectRow... 的委托方法。

于 2012-12-10T09:04:32.273 回答
1

您可以通过以下代码了解单元格

if(gestureRecognizer.state == UIGestureRecognizerStateBegan) {
    CGPoint p = [gestureRecognizer locationInView:[self tableView]];

    NSIndexPath *indexPath = [[self tableView] indexPathForRowAtPoint:p];

    if(indexPath != nil) {

        UITableViewCell *cell = [[self tableView] cellForRowAtIndexPath:indexPath];

                    ...
    }
}
于 2012-12-10T09:00:28.110 回答