UIWindow endDisablingInterfaceAutorotationAnimated: no match -beginDisablingInterfaceAutorotation

- [UIWindow endDisablingInterfaceAutorotationAnimated:]

 <UITextEffectsWindow: 0x7fabf14d7de0; frame = (0 0; 375 667); opaque = NO; gestureRecognizers = <NSArray: 0x7fabf14d8ac0>; layer = <UIWindowLayer: 0x7fabf14d82a0>> without matching -beginDisablingInterfaceAutorotation. Ignoring. 

I got this by clicking on the text box in the collection view cell. And when the received keyboard shows a notification, I wrote 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 this is so.

+8
ios
source share

No one has answered this question yet.

See related questions:

17
Incorrect UIWindow when using landscape orientation
8
Scroll the table view to an overflow text box when the keyboard lights up with a text box inside the popup
3
tableViewCell doesn't scroll when editing text field in iOS11
3
Track and analyze ios immunity gestures
2
How to resize the view to match the show / hide keyboard if the keyboard is already shown
2
Scrolling a table with text fields when you click "Next" on the keyboard
one
UITableView doesn't get touches with a single gesture recognizer
one
Do not disconnect the keyboard with reload collectionViewCell
0
UITapGesture removes the ability to select from a UITableView when the keyboard responder resigns
0
Group view of a table with multiple text fields

All Articles