Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/ios/109.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ios UIWindow EndDisableingInterfaceAutoRotation动画:不匹配-BeginDisableingInterfaceAutoRotation_Ios - Fatal编程技术网

Ios UIWindow EndDisableingInterfaceAutoRotation动画:不匹配-BeginDisableingInterfaceAutoRotation

Ios UIWindow EndDisableingInterfaceAutoRotation动画:不匹配-BeginDisableingInterfaceAutoRotation,ios,Ios,-[UIWindow EndDisableingInterfaceAutoRotationAnimated:已启用 <UITextEffectsWindow: 0x7fabf14d7de0; frame = (0 0; 375 667); opaque = NO; gestureRecognizers = <NSArray: 0x7fabf14d8ac0>; layer = <UIWindowLayer: 0x7fabf14d82a0>> without ma

-
[UIWindow EndDisableingInterfaceAutoRotationAnimated:
已启用

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

我想知道这是为什么。

您想更改单元格的高度还是位置?@LoVo这里的关键点是
[self.tableView beginUpdates];[self.tableView endUpdate]
将阻止键盘显示文本字段是否在集合视图单元格中。啊,现在我明白了,在KeyboardWasShow中调用tableview动画如何?@LoVo键盘将立即显示并被解除。我在与具有默认单元格的tableview交互解除键盘时发生了这种情况。这可能是一个相关问题:。
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.