On my iphone app, I have a UITableView in edit mode, containing custom UITableViewCell.
I would like to detect when user has clicked on the left button of each cell (minus circular red button, the one that is animated with a rotation), just before the “Delete” button appears.
I would like to be able to change my cell content in that case…
Is that possible ?
Thanks !
You can subclass
UITableViewCellthat implements-willTransitionToState:and/or-didTransitionToState:methods.