Does anyone knows any method to resize subviews(I.E. UILabelView) when Delete button appears.
There could be two methods:
1.Capture a notification, if there’s one, when the button appears in the UITableViewCell
2.Tell the framework re-arange it automatically.
In your UITableViewCell class’s .m file use layoutSubviews. It is called every time the cell is resized, the delete button appears/disappears, and more:
You can also use
if (self.editing) {inside of layoutSubviews for more control.