Додайте властивість для відстеження вибраної комірки
@property (nonatomic) int currentSelection;
Встановіть його на значення дозорної (наприклад) viewDidLoad
, щоб переконатися, що UITableView
старти починаються у нормальному положенні
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
//sentinel
self.currentSelection = -1;
}
У heightForRowAtIndexPath
ви можете встановити висоту ви хочете для вибраної комірки
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
int rowHeight;
if ([indexPath row] == self.currentSelection) {
rowHeight = self.newCellHeight;
} else rowHeight = 57.0f;
return rowHeight;
}
У didSelectRowAtIndexPath
вас зберегти поточний вибір і зберегти висоту динамічного, якщо потрібно
- (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];
}
}
У didDeselectRowAtIndexPath
встановити індекс вибору назад до значення дозорного і анімувати спину клітин до нормальної форми
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
// do things with your cell here
// sentinel
self.currentSelection = -1;
// animate
[tableView beginUpdates];
[tableView endUpdates];
}
}