I’m set editing mode for UITableView to have a possibility of cell reordering. UITableViewCellEditingStyleNone is returned by editingStyleForRowAtIndexPath: method for every cell, but it reserve some area on the left of cell. Is it possible to prevent such an area reserving, because I’m not need an insert or delete icon on left? In short, i want have a cell that occupate all available area and still can be reordered.
I’m set editing mode for UITableView to have a possibility of cell reordering. UITableViewCellEditingStyleNone
Share
See the docs: You can set a boolean on the cell to make it not indent. Just add
to wherever you create your cell.