Dodaj właściwość, aby śledzić wybraną komórkę
@property (nonatomic) int currentSelection;
Ustaw wartość wartownika w (na przykład) viewDidLoad
, aby upewnić się, że UITableView
zaczyna się w pozycji „normalnej”
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
//sentinel
self.currentSelection = -1;
}
W heightForRowAtIndexPath
możesz ustawić żądaną wysokość dla wybranej komórki
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
int rowHeight;
if ([indexPath row] == self.currentSelection) {
rowHeight = self.newCellHeight;
} else rowHeight = 57.0f;
return rowHeight;
}
W didSelectRowAtIndexPath
zapisz bieżący wybór i zapisz dynamiczną wysokość, jeśli to konieczne
- (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];
}
}
W didDeselectRowAtIndexPath
ustawienia tyłem do wyboru wskaźnika wartości wskaźnikowych i ożywić komórek z powrotem do normalnej postaci
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
// do things with your cell here
// sentinel
self.currentSelection = -1;
// animate
[tableView beginUpdates];
[tableView endUpdates];
}
}