6

我正在做一个需要扩展单元格 onclick 以显示更多详细信息的应用程序。我使用了一个自定义单元并将它们添加到 UItableview 中。当我单击单元格时,它的动画效果很好并下降,当我再次单击时它上升,这是通过更改单元格的高度来完成的。实际的自定义单元格大小比我通常显示的单元格大。当我单击单元格时,会显示整个单元格。我遇到的唯一问题是数据溢出。未选择单元格时应隐藏这些数据。只有当它被选中时,才应该显示这些数据。

我参考了不同的文章,尝试更改颜色设置绑定对我不起作用。我在这个问题iphone uitablecellview overflow中遇到了同样的问题,尝试了答案,但没有奏效。

我所需要的只是如何在自定义单元格未扩展时隐藏它的底部,并在扩展时显示它......!

这些是我的屏幕截图

加载时 加载 当我点击一个单元格时 时单击单元格 当我单击第二个单元格时 时]单击第二个单元格 当我点击展开的单元格时
时单击已展开的单元格时这些是我使用过的代码片段...。

// Declaring the SearchResultTable.
    CGRect filterFrame = CGRectMake(0,31, 320, 400);
    self.searchResultTable = [[UITableView alloc] initWithFrame:filterFrame];
    self.searchResultTable.dataSource = self;
    self.searchResultTable.delegate = self;
    self.searchResultTable.backgroundColor = [UIColor whiteColor];
    self.searchResultTable.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
    self.searchResultTable.separatorColor = [UIColor lightGrayColor];
    [self.view addSubview:self.searchResultTable];

//Adding cells
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"ExpandedSearchResultTableCell";


    ExpandedSearchResultTableCell *cell = (ExpandedSearchResultTableCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];


    if (cell == nil)
    {
        cell.contentView.clipsToBounds = YES;
        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"ExpandedSearchResultTableCell" owner:self options:nil];
        cell = [nib objectAtIndex:0];


    }

    cell.productNameLable.text = @"Only this should be shown";
    cell.productListLabel.text = @"This Should be hidden.. Only shown when expanded";
    cell.productApplicationLable.text=@"This Should be hidden.. Only shown when expanded";
    cell.productTargetLable.text= @"This Should be hidden.. Only shown when expanded";
    cell.productQuantityLable.text=@"This Should be hidden.. Only shown when expanded";
    cell.productReactivityLable.text=@"This Should be hidden.. Only shown when expanded";;


    return cell;
}


//on click event
(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {




    // Deselect cell
    [tableView deselectRowAtIndexPath:indexPath animated:TRUE];

    // Toggle 'selected' state
    BOOL isSelected = ![self cellIsSelected:indexPath];

    // Store cell 'selected' state keyed on indexPath
    NSNumber *selectedIndex = [NSNumber numberWithBool:isSelected];
    [selectedIndexes setObject:selectedIndex forKey:indexPath]; 

    // This is where magic happens...
    [searchResultTable beginUpdates];
    [searchResultTable endUpdates];
}

//Getting the height depending on expanded or not
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    // If our cell is selected, return double height
    if([self cellIsSelected:indexPath]) {
        return kCellHeight * 3.0;
    }

    // Cell isn't selected so return single height
    return kCellHeight;
}
4

3 回答 3

1

如果您正在寻找具有普通 tableview 类型的单元格扩展,

带有动画扩展单元格的 iPhone UITableView

如果您使用分组表视图并希望扩展节标题的选择,

表格视图动画和手势

于 2012-08-29T12:10:42.340 回答
1

好的,我通过在 didSelectRowAtIndexPath 中使用单个标志和对 cellForRowAtIndexPath 单元格的引用来完成它。并根据折叠和拉伸设置我的标签可见和隐藏。标志会随着单元格是否被选中而相应更新......!!

谢谢大家的帮助..!

于 2012-08-29T16:42:29.077 回答
0

糟糕,大量代码使您的帖子变脏了。

我不会通过你的代码。

我会解释你的逻辑。

  1. 只有这个应该显示将进入你的 indexpath.row = 0;
  2. 如果选择部分中的行数,则显示的单元格计数+ 1,否则为 1。
cell.productNameLable.text = @"Only this should be shown";
cell.productListLabel.text = @"This Should be hidden.. Only shown when expanded";
cell.productApplicationLable.text=@"This Should be hidden.. Only shown when expanded";
cell.productTargetLable.text= @"This Should be hidden.. Only shown when expanded";
cell.productQuantityLable.text=@"This Should be hidden.. Only shown when expanded";
cell.productReactivityLable.text=@"This Should be hidden.. Only shown when expanded";;

这会使您的代码变脏。如果您要在一个单元格中显示所有数据,并且当您选择一个部分时只添加一个单元格,我建议将所有这些添加到不同的单元格中。

我仍然很困惑您为什么要进行这些长编码,请参阅此答案以获得更好的解释

于 2012-08-29T12:57:05.040 回答