当用户在MFMailComposerViewController
并按主页按钮时,我收到以下错误:
[UIWindow endDisablingInterfaceAutorotationAnimated:]调用>没有匹配-beginDisablingInterfaceAutorotation。忽略。
我浏览了论坛,其他一些人在不同的情况下遇到过这个错误,但没有解决方案。
我已在应用中的所有视图控制器中为此设置了shouldAutorotate
:
- (BOOL)shouldAutorotateToInterfaceOrientation:
(UIInterfaceOrientation)interfaceOrientation
{
return interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown ||
interfaceOrientation == UIInterfaceOrientationPortrait;
}
答案 0 :(得分:3)
检查您是否有多次调用以解除键盘,UIActionSheet等。
我遇到了同样的问题,并通过改变解雇键盘的方式解决了问题。我发现以下帖子是最有帮助的一个