在ios中扩展和折叠表格视图单元格

时间:2013-11-08 09:41:59

标签: ios objective-c uitableview customization

我有自定义单元格的表视图和每个单元格中的一些按钮。单击单元格内的任何按钮将显示该单元格下方的另一个自定义视图。下一步单击同一按钮将折叠视图并需要相同对于所有单元格。我尝试使用插入方法单击按钮但是徒劳无功。如何仅使用表格视图委托来执行此操作。

这是我试过的:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *simpleTableIdentifier = @"CustomCell_For_Dashboard";

    CustomCellFor_Dashboard  *customCell = (CustomCellFor_Dashboard *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
    if (customCell == nil)
    {
        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"CustomCellFor_Dashboard" owner:self options:nil];
        customCell = [nib objectAtIndex:0];
    }
    [customCell.howyoulfeelBtn  addTarget:self action:@selector(buttonclicked:) forControlEvents:UIControlEventTouchUpInside];
      customCell.nameLabel.text = @"test";
    customCell.imgView.image = [UIImage imageNamed:@"Default.png"];
   // customCell.prepTimeLabel.text = [prepTime objectAtIndex:indexPath.row];
    return customCell;
}

-(void)buttonclicked:(id)sender{
    NSIndexPath *indexPath = [myTable indexPathForCell:sender];


    [myTable beginUpdates];

     NSIndexPath *insertPath = [NSIndexPath indexPathForRow:indexPath.row inSection:indexPath.section];
   [myTable insertRowsAtIndexPaths:[NSArray arrayWithObject:insertPath] withRowAnimation:UITableViewRowAnimationTop];
  } 

任何人都可以帮助我吗?

4 个答案:

答案 0 :(得分:33)

我在一个项目上完成了同样的任务,只有一个不同的东西:没有按钮,只需点击单元格就可以展开或折叠它。

您应该在代码中编辑几件事。首先,按钮方法代码如下所示:

- (void) collapseExpandButtonTap:(id) sender
{
    UIButton* aButton = (UIButton*)sender; //It's actually a button
    NSIndexPath* aPath = [self indexPathForCellWithButtonTag:aButton.tag]; //Let's assume that you have only one section and button tags directly correspond to rows of your cells.
    //expandedCells is a mutable set declared in your interface section or private class extensiont
    if ([expandedCells containsObject:aPath])
    {
        [expandedCells removeObject:aPath];
    }
    else
    {
        [expandedCells addObject:aPath];
    }
    [myTableView beginEditing];
    [myTableView endEditing]; //Yeah, that old trick to animate cell expand/collapse
}

现在第二件事是UITableViewDelegate方法:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    if ([expandedCells containsObject:indexPath])
    {
        return kExpandedCellHeight; //It's not necessary a constant, though
    }
    else
    {
        return kNormalCellHeigh; //Again not necessary a constant
    }
}

这里的关键是确定您的单元格是否应该展开/折叠并在委托方法中返回正确的高度。

答案 1 :(得分:17)

关于@ eagle.dan.1349所说的,这就是在单击单元格时如何做到这一点。在storyboard中,您还需要将表格单元格设置为剪辑子视图,否则将隐藏的内容将显示。

·H

@property (strong, nonatomic) NSMutableArray *expandedCells;

的.m

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{

    if ([self.expandedCells containsObject:indexPath])
    {
        [self.expandedCells removeObject:indexPath];
    }
    else
    {
        [self.expandedCells addObject:indexPath];
    }
    [tableView beginUpdates];
    [tableView endUpdates];
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    CGFloat kExpandedCellHeight = 150;
    CGFloat kNormalCellHeigh = 50;

    if ([self.expandedCells containsObject:indexPath])
    {
        return kExpandedCellHeight; //It's not necessary a constant, though
    }
    else
    {
        return kNormalCellHeigh; //Again not necessary a constant
    }
}

答案 2 :(得分:8)

看到这篇文章,只是想给我2美分,因为我的解决方案非常类似于所选择的答案(整个区域的敲击)。

许多人通过单独使用单元格来构建这一点,但我相信有一种方法可以构建它,可以更好地与人们想要实现的目标保持一致:

标题单元格标题 tappable ,然后标题下方的单元格显示或隐藏。这可以通过向标题添加手势识别器来实现,当点击时,您只需删除该标题下的所有单元格(该部分),反之亦然(添加单元格)。当然,你必须保持哪些标题是" open"以及哪些标题已关闭。"

这很好,有几个原因:

  1. 标题和单元格的工作是分开的,这使代码更清晰。
  2. 这种方法可以很好地构建表格视图的方式(标题和单元格),因此,没有太大的魔力 - 代码只是删除或添加单元格,并且应该与更高版本的iOS兼容。
  3. 我创建了一个非常简单的库来实现这一目标。只要使用UITableView节标题和单元格设置表格视图,所有必须执行的操作就是子视图的tableview和标题。

    链接:https://github.com/fuzz-productions/FZAccordionTableView

    enter image description here

答案 3 :(得分:0)

我也有同样的情况,我的解决方案是使用viewForHeaderInSection方法在部分标题的顶部放置一个按钮。

noOfRows定义每个部分中有多少行,button.tag保持按下哪个部分按钮。

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
    UIButton *btnSection = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, tableView.frame.size.width, tableView.frame.size.height)];
    btnSection.tag = section;   
    [btnSection setTitle:[sectionArray objectAtIndex:section] forState:UIControlStateNormal];
    [btnSection addTarget:self action:@selector(sectionButtonTapped:) forControlEvents:UIControlEventTouchUpInside];

    return btnSection;
} 

- (void)sectionButtonTapped:(UIButton *)button {
    sectionIndex = button.tag;
    if (button.tag == 0) {
        noOfRows = 3;
    } else if (button.tag == 1) {
        noOfRows = 1;
    } else if (button.tag == 2) {
        noOfRows = 2;
    }

    [self.tableView reloadData];
}

希望这会对你有帮助..