views:

146

answers:

1

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?

+2  A: 

Yes, check out the editing & setEditing:animated: and willTransitionToState: of UITableViewCell. You will probably need a custom UITableViewCell subclass.

jtbandes
Thanks for that. Although I've found something that suits me that apple has already supported (although un-documented), the UITableViewCellEditingStyle multi-select, I'm sure this will help other people.
Joshua
Huh, didn't know that existed (even if undocumented). That's cool. But you shouldn't use it! :)
jtbandes