TableView 点击cell,改变选中cell的高度

2020-11-10  本文已影响0人  Flutter求学者

定义
NSMutableDictionary *selectedIndexes;

- (void)viewDidLoad
{
    [super viewDidLoad];
    selectedIndexes = [[NSMutableDictionaryalloc] init];
}

- (BOOL)cellIsSelected:(NSIndexPath*)indexPath {
// Return whether the cell at the specified index path is selected or not
NSNumber *selectedIndex = [selectedIndexes objectForKey:indexPath];
return selectedIndex == nil ? FALSE : [selectedIndex boolValue];
}


//设置行高
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath{
    //return 35;
    if ([self cellIsSelected:indexPath]) {
        return 60;
    }
    return 35;
}



- (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...
      [self.tableView beginUpdates];
      [self.tableView endUpdates];
}
上一篇 下一篇

猜你喜欢

热点阅读