Добавить свойство для отслеживания выбранной ячейки
@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];
}
}