Sascha
Sascha

Reputation: 57

Grouped UITableView & edit-mode: strange behaviour

recently I implemented an grouped UITableView with editing, but the problem is: if the UITableView is in edit-mode, the content of the cells is moved to the right and this looks really unattractive.

Thanks in advance.

Regards, Sascha

Upvotes: 2

Views: 599

Answers (1)

jv42
jv42

Reputation: 8593

- (BOOL)tableView:(UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath
{
    return NO;  
}

Upvotes: 6

Related Questions