Is it possible to create a custom UITableViewCellEditingStyle
, say to change the the image/icon that appears next to each ro开发者_高级运维w and maybe what action it takes.
Is it possible and if so how?
Yes, check out the editing
& setEditing:animated:
and willTransitionToState:
of UITableViewCell
. You will probably need a custom UITableViewCell
subclass.
精彩评论