Reputation: 15520
Is it possible to create a custom UITableViewCellEditingStyle
, say to change the the image/icon that appears next to each row and maybe what action it takes.
Is it possible and if so how?
Upvotes: 3
Views: 2923
Reputation: 118781
Yes, check out the editing
& setEditing:animated:
and willTransitionToState:
of UITableViewCell
. You will probably need a custom UITableViewCell
subclass.
Upvotes: 3