0

在重新选择(触摸而不抬起手指)已选择的单元格时,我遇到了关于 UITableViewCell 的 textLabel 属性的问题。

我在 textLabel 正下方的背景中添加了一个自定义 contentView,它具有动态高度(包括单元格)和 textLabel 的背景,其高度始终相同(50.0f-ish)。

我正在使用 beginUpdates 和 endUpdates 方法对选择进行动画处理,并更改框架以防止 textLabel 在更新发生后立即在单元格中居中;将其大致保持在背景的相同范围内。选择不同的单元格时没有问题,并且 textLabel 保持在应该在的顶部。

现在的主要问题是当用户再次在选定的单元格上触摸手指(不抬起手指)时,textLabel 会根据单元格的高度变化而居中。

    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
        DetailView *detailView = // Create detail view

        // Add UIImageView from content to cell --------------------
        UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

        // Change textLabel colors, fontSize, and shadow properties
        // Create CustomContentView *ccView = nil;


        // ------
        // Remove / Hide any existing CustomContentViews
        // --- Code here
        // -------

        switch (hasImageInCustomView) {
        case YES:
            image = _imageInCustomView;
            image = NO;

            if (selectedIndexPath.row != indexPath.row) {
                [tableView beginUpdates];
                [tableView endUpdates];
            }

            CGRect frame = cell.textLabel.frame;
                    frame.size.height = 50.0f;
                    cell.textLabel.frame = frame;


            return;
        break;
        default:
            image = [detailView getImage];
        break;
        }

        // ----
        // Calculate height for image and add that to heightForExpandedRow property
        // -- Code here...
        // ----

        [tableView beginUpdates];
        [tableView endUpdates]; 

        // Add subview with UIImageView
        customContentView = [[CustomContentView alloc] initWithFrame:(CGRect){0, 0, kWidth, dynamicExpandedRow}];
        contentView.clipsToBounds = YES;
        [cell.contentView addSubview:customContentView];
        [cell.contentView sendSubviewToBack:customContentView];
        [customContentView setContentImage:image];

        CGRect frame = cell.textLabel.frame;
        frame.size.height = 50.0f;
        cell.textLabel.frame = frame;

}

我使用的是 iOS 3.0,所以我认为 didHighlightRowAtIndexPath: 不会起作用,我想知道是否有任何委托方法在调用 beginUpdates/endUpdates 后重置 textLabel 框架。

我已经登录了框架更改,它像这样出现:

在 beginUpdates/endUpdates 被调用之前

<UILabel: 0x4e55500; frame = (10 0; 250 199); text = 'Some Text Goes Here...'; clipsToBounds = YES; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x4e55570>>

在调用 beginUpdates/endUpdates 并手动更改帧之后

<UILabel: 0x4e55500; frame = (10 0; 250 50); text = 'Some Text Goes Here...'; clipsToBounds = YES; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x4e55570>>

在调用这两种方法之前,高度显示为 199,之后显示为 50。但是,无论何时重新选择选定的单元格,textLabel 都会在单元格中保持垂直居中,而不管强制帧更改如何。

如果有人可以提供帮助,我将不胜感激。

链接到图片示例 - > http://i50.tinypic.com/2r6o5k5.jpg

4

2 回答 2

0

您正在更改正确选择单元格时的高度UILabel,然后在更改 UILabel 高度之前添加一个条件。

即最初 selectedIndexRow 将是-1。

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
//Check if we are selecting the same cell
        if(selectedIndexRow != indexPath.row){
           if(selectedIndexRow != -1){

        //deselect the previous cell
        }

            selectedIndexRow = indexPath.row;

        //preform your action

        }
    }

当您检查 selectedIndex 时,也添加上述条件..您不需要更改很多代码..

于 2013-03-20T03:58:04.540 回答
0

试试这个:

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 50;
}

您必须增加单元格高度,因为您使用的是默认标签而不是自定义标签

于 2013-03-20T04:44:39.620 回答