0

在下面的示例中,第 1 节和第 2 节可扩展。但是每个可扩展节都有 4 个单元格。我需要一种方法来适应第 1 节中的 4 行和第 2 节中的 2 行。第一种方法指定要扩展的行,其余的是tableview 委托和数据源方法

 - (BOOL)tableView:(UITableView *)tableView canCollapseSection:(NSInteger)section
    {
        if (section>0 && section<3) return YES;

        return NO;
    }

    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
    {
        // Return the number of sections.
        return 4;
    }





- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

    if ([self tableView:tableView canCollapseSection:section])
    {

        if ([expandedSections containsIndex:section])
        {

            NSLog(@"section number:%d",section);
            return 3; // return rows when expanded

        }
            return 1; // only top row showing

    }

    // Return the number of rows in the section.
    return 1;


}



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

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    // Configure the cell...

    if ([self tableView:tableView canCollapseSection:indexPath.section])
    {
        if (!indexPath.row)
        {
            // first row
            cell.textLabel.text = @"Expandable"; // only top row showing

            if ([expandedSections containsIndex:indexPath.section])
            {
            //some code
            }
            else
            {
                //some code
            }
        }
        else
        {
            // all other rows
            cell.textLabel.text = @"Some Detail";
            cell.accessoryView = nil;
            cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
        }
    }
    else
    {
        cell.accessoryView = nil;
        cell.textLabel.text = @"Normal Cell";

    }

    return cell;
}
4

1 回答 1

0

在 numberOfRowsInSection 方法中返回正确的行数

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if ([self tableView:tableView canCollapseSection:section])
    {
        if ([expandedSections containsIndex:section])
        {
            NSLog(@"section number:%d",section);
            // -------------- UPDATE HERE --------------
            return (indexPath.section == 1 ? 4 : 2); // return rows when expanded
        }
        return 1; // only top row showing
    }
    // Return the number of rows in the section.
    return 1;
}
于 2013-02-14T02:42:38.383 回答