Adicione uma propriedade para acompanhar a célula selecionada
@property (nonatomic) int currentSelection;
Defina-o como um valor sentinela em (por exemplo) viewDidLoad
, para garantir que o UITableView
início na posição 'normal'
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
//sentinel
self.currentSelection = -1;
}
Em heightForRowAtIndexPath
você pode definir a altura desejada para a célula selecionada
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
int rowHeight;
if ([indexPath row] == self.currentSelection) {
rowHeight = self.newCellHeight;
} else rowHeight = 57.0f;
return rowHeight;
}
Ao didSelectRowAtIndexPath
salvar a seleção atual e salvar uma altura dinâmica, se necessário
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// do things with your cell here
// set selection
self.currentSelection = indexPath.row;
// save height for full text label
self.newCellHeight = cell.titleLbl.frame.size.height + cell.descriptionLbl.frame.size.height + 10;
// animate
[tableView beginUpdates];
[tableView endUpdates];
}
}
Em didDeselectRowAtIndexPath
definir o índice de seleção de volta ao valor sentinela e animar a célula de volta à forma normal
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
// do things with your cell here
// sentinel
self.currentSelection = -1;
// animate
[tableView beginUpdates];
[tableView endUpdates];
}
}