im using a table with custom reorder able cells , when setting the cell to editing mode a 3 lines icon appears on the right of the cell. i need the cell to be order able without displaying the default "dragging" icon;
Asked
Active
Viewed 2,411 times
1 Answers
4
To hide the reordering icon, set showsReorderControl to NO on your UITableViewCell. If you want reordering to work, you'll have to implement something.
If instead you want to change the reorder icon to something else, see this SO answer.
-
When setting showsReorderControl to NO (false), it's not possible to reorder. At least not in iOS 15. – Johan Karlsson Nov 29 '21 at 12:42