Joshua
Joshua

Reputation: 15520

Custom UITableViewCellEditingStyle

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

Answers (1)

jtbandes
jtbandes

Reputation: 118781

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

Upvotes: 3

Related Questions