должно происходить по умолчанию, но в переопределении UITableViewDelegate
- (BOOL)tableView:(UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath{
return YES;
}
убедитесь, что вы не делаете ничего странного в:
- (NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath
и что вы устанавливаете ячейку1007 * до UITableViewCellEditingStyleDelete
или UITableViewCellEditingStyleInsert
и что вы не возвращаете No
из:
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath