Решена анимация всех компонентов (изменение frame.origin.x
) следующим образом:
- (BOOL) tableView:(UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath {
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:.3];
[cell.CellTitle setFrame:cgrectMake(x+20, y, w, h)]; // +x
[...]
[cell.CellAddress setFrame:f2];
[UIView commitAnimations];
return YES;
}
При редактировании / сохранении анимация «отступ» управляет влево или вправо.
спасибо