I have few custom controls (image views) added programmatically to table cell. I want to hide them when table view goes into editing mode and show them again when view gets out of editing mode. I'm not using UITableViewCell subclasses, controls are added through tableView:cellForRowAtIndexPath: method.
When and where should I do the hide/show?
I'm wondering is this even possible without subclassing (where I could do this in layoutSubviews)...