Reputation: 57
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
Reputation: 8593
- (BOOL)tableView:(UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath
{
return NO;
}
Upvotes: 6