Fügen Sie eine Eigenschaft hinzu, um die ausgewählte Zelle zu verfolgen
@property (nonatomic) int currentSelection;
Stellen Sie einen Sentinel-Wert in (zum Beispiel) ein viewDidLoad
, um sicherzustellen, dass der UITableView
Start in der 'normalen' Position erfolgt
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
//sentinel
self.currentSelection = -1;
}
In heightForRowAtIndexPath
können Sie die gewünschte Höhe für die ausgewählte Zelle festlegen
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
int rowHeight;
if ([indexPath row] == self.currentSelection) {
rowHeight = self.newCellHeight;
} else rowHeight = 57.0f;
return rowHeight;
}
In didSelectRowAtIndexPath
speichern Sie die aktuelle Auswahl und speichern bei Bedarf eine dynamische Höhe
- (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];
}
}
In didDeselectRowAtIndexPath
auf Normalform den Auswahlindex zurück zum Sentinel - Wert und animiert die Zelle zurück
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
// do things with your cell here
// sentinel
self.currentSelection = -1;
// animate
[tableView beginUpdates];
[tableView endUpdates];
}
}