Attached is a screen shot from the iPhone Recipes Core Data source example.
I’m trying to recreate the display of the three horizontal lines in the UITableViewCellAccessory position during editing, but I can’t see any UITableViewCellAccessory style that would create three horizontal lines. During editing, the source code sets the accessory style to UITableViewCellAccessoryStyleNone.
Can you give me a hint on how to create this effect?

The three horizontal lines are for moving the table cells. The following code should enable them for you using the
tableView:canMoveRowAtIndexPathmethod:You should also implement the
tableView:shouldIndentWhileEditingRowAtIndexPath:andtableView:editingStyleForRowAtIndexPath:to give the style and indentation you want while the cell is in edit mode. Example outline code below:Hope this helps; please mark this answer as correct if it’s what you’re looking for.