-[UIWindow endDisablingInterfaceAutorotationAnimated:]
called on
<UITextEffectsWindow: 0x7fabf14d7de0; frame = (0 0; 375 667); opaque = NO; gestureRecognizers = <NSArray: 0x7fabf14d8ac0>; layer = <UIWindowLayer: 0x7fabf14d82a0>> without matching
-beginDisablingInterfaceAutorotation. Ignoring.
I got this when tapping on a text field in a collection view cell. And when received Keyboard will show notification, I've written the code -
self.descriptionCellHeight = xxx;
[self.tableView beginUpdates];
[self.tableView endUpdate];// My intent is to recalculate the cell height when prompting keyboard. It works on other text field in a table view cell, it doesn't work on a collection view cell.
I wonder why is that.