I created a subclass of UITableViewCell that contains a multi-line shortcut. In TableViewDelegate, I override -setEditing: to recalculate the height of the label with a shorter width when a circular widget is visible. It still works.
However, when this circular widget is displayed and the "Delete" button appears, the cell seems to receive a relay (the label becomes smaller), but the cell height is not recounted. Setting a breakpoint in -heightForRowAtIndexPath: indicates that such an event does not -heightForRowAtIndexPath: pressing the circular widget / new button that appears. How can I get tableView to recalculate cell height in this case?
source share