我有一个主视图控制器,它通过滑动手势调用其他故事板视图......在其中一个视图上,我有一个按钮通过 segue 调用另一个视图(我的按钮链接到这个模态视图)......当我测试它时, 屏幕出现然后突然转向侧面...我的“ shoudRotateToInterfaceDirection
”设置为
(BOOL)shouldAutorotateToInterfaceOrientation:
(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
这在任何地方都是一样的......并且其他观点正在按预期工作......
整个应用程序设置为lanscapeRight
(并且是唯一允许的方向)...
任何线索?
谢谢