故事板segue翻转错误的方向

时间:2012-06-08 19:27:46

标签: xcode4.3 segue

我有一个主视图控制器,通过滑动手势调用其他故事板视图...在其中一个视图中,我有一个按钮,通过segue调用另一个视图(我的按钮链接到此模态视图)...我测试它,屏幕出现然后突然转向侧面......我有我的" shoudRotateToInterfaceDirection"设置为

(BOOL)shouldAutorotateToInterfaceOrientation:
    (UIInterfaceOrientation)interfaceOrientation
    {
    return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
    }

在任何地方都是一样的......其他观点正在按预期工作......

整个应用设置为lanscapeRight(并且是唯一允许的方向)...

任何线索?

THX

1 个答案:

答案 0 :(得分:0)

好的,所以经过一些测试后,似乎使用“默认”演示文稿导致问题...我将其切换到“当前上下文”,现在看起来很好......