I’ve got a tableView with entries which the user should be able to edit. The special thing is, the tableView has a “right detail” style (a number) and I want this right detail to be replaced (animated if possible) with the standard disclosure indicator accessory, when the user hits edit.
How can I do this? Thank you!
Update: Thank you for the answers so far but could you maybe give me a code example for the part where the number gets replaced by the picture? Thank you!
You can make use of the UITableViewDelegate methods for editing such as
tableView:willBeginEditingRowAtIndexPath:to perform your changes. UsecellForRowAtIndexPath:to get the UITableViewCell object.