-1

如果我单击按钮,我在表格视图单元格上有一个按钮,将出现一个弹出视图,其余单元格将像动画一样向下动画。如果我单击,具有子视图的单元格将像 ios 中的 plist 一样打开子视图单元格它将打开下一级子单元格。表格视图必须如下图所示

表格视图必须是这样的

表视图

细胞和子细胞必须是这样的。任何人都可以帮助我吗?

4

2 回答 2

1

看看这个自定义视图 -

  1. 自定义树视图

  2. 可扩展的表格视图

于 2013-09-25T11:41:27.910 回答
1

我以前做过。只需使用以下代码。在单元格视图中创建一个具有单元格和跟随视图的自定义单元格类,但仅使用 heightforrowatindexpath 方法 uitableview 类显示要显示的内容。这是代码

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 10;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;
{
    if (checkHeight == indexPath.row)
        return 185;
    else
        return 80;
}

// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";

    FAQCell *cell = (FAQCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil)
    {
        [[NSBundle mainBundle] loadNibNamed:@"FAQCell" owner:self options:nil];
        cell = myCell;
        myCell = nil;
    }

    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    [cell.quesText setFont:[UIFont fontWithName:@"CaviarDreams" size:16]];
    [cell.ansText setFont:[UIFont fontWithName:@"CaviarDreams" size:16]];


    // check for the row for which the background color has to be changed
    if (checkHeight == indexPath.row)
        [cell.bgView setBackgroundColor:[UIColor colorWithRed:0.3333 green:0.7373 blue:0.4588 alpha:1.0]];
    else
        [cell.bgView setBackgroundColor:[UIColor colorWithRed:0.9176 green:0.3765 blue:0.2980 alpha:1.0]];

    return cell;
}

#pragma mark -
#pragma mark Tableview Delegate Methods

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Deselect cell
    [tableView deselectRowAtIndexPath:indexPath animated:TRUE];
    checkHeight = indexPath.row;

    // reload the data of the table
    [tableView reloadSections:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(0, tableView.numberOfSections)] withRowAnimation:UITableViewRowAnimationAutomatic];
}

如果您遇到任何问题,请告诉我。

于 2013-09-04T09:19:11.520 回答