Agregue una propiedad para realizar un seguimiento de la celda seleccionada
@property (nonatomic) int currentSelection;
Ajústelo a un valor centinela en (por ejemplo) viewDidLoad
, para asegurarse de que UITableView
comience en la posición 'normal'
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
//sentinel
self.currentSelection = -1;
}
En heightForRowAtIndexPath
puede establecer la altura que desea para la celda seleccionada
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
int rowHeight;
if ([indexPath row] == self.currentSelection) {
rowHeight = self.newCellHeight;
} else rowHeight = 57.0f;
return rowHeight;
}
En didSelectRowAtIndexPath
guardar la selección actual y guardar una altura dinámica, si es necesario
- (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];
}
}
En didDeselectRowAtIndexPath
establecer el índice de selección de nuevo al valor centinela y animar la celda a su forma normal
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
// do things with your cell here
// sentinel
self.currentSelection = -1;
// animate
[tableView beginUpdates];
[tableView endUpdates];
}
}