I have a UITableView in my app. Selecting a cell from the table view adds a subview over top where the user can edit the contents of the table view cell. After the user dismisses the subview, the edited cell is reloaded using the UITableView instance method reloadRowsAtIndexPaths:withRowAnimation:
I want the edited cell to flash it’s contentView.background color as an indicator of which cell has just been updated. I know about UITableViewRowAnimation, but it doesn’t give me the effect that I want.
Any suggestions on the best way to accomplish this?
Is
[tableview reloadRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationFade]unacceptable?