So apple provides the edit mode which looks like this:
Is there a way to use custom icons for "red circle" and "hamburger menu"? Also to change "x" or "y" position?
So apple provides the edit mode which looks like this:
Is there a way to use custom icons for "red circle" and "hamburger menu"? Also to change "x" or "y" position?
When putting a UITableView
in editing mode using setEditing(_:animated:)
, “the table view goes into editing mode by calling setEditing(_:animated:)
on each visible UITableViewCell object” according to Apple’s UITableView
documentation. You could create a custom UITableViewCell
subclass and override setEditing(_:animated:)
there, using custom image views holding your versions of the circle and hamburger symbols inside your cell’s XIB.
I found helpful the code from this answer although only when calling it in layoutSubviews()
.