当我点击表格视图单元格上的按钮时弹出一个视图

时间:2013-09-04 09:14:34

标签: objective-c

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

The table view must be like this

Table view

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

2 个答案:

答案 0 :(得分: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];
}

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

答案 1 :(得分:1)

查看此自定义视图 -

  1. Custom Tree View

  2. Expandable Table View