You will have to fake the editing mode. What I mean is that, as AtomRiot said, you have to subclass UITableViewCell so that in edit mode you show the button you want on the left, outside the cell.
But first, first. To change the indentation level for your cells, you need to implement this delegation method for a UITableView
- (NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath
, . UITableViewCell , ,
- (void)setEditing:(BOOL)editing animated:(BOOL)animated {
, , , , , .
( , ) , .
, .
!