无法旋转到两个纵向方向

时间:2011-04-19 06:38:50

标签: iphone objective-c screen-rotation

我已将纵向方向添加到.plist for iPad和普通,但它仍然没有围绕顶部肖像按钮:这是我在firstviewcontroller.m中的代码

    // Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return YES;
}

1 个答案:

答案 0 :(得分:1)

将它放在所有的视图控制器中,可能你有一个基本的和一个覆盖的每个iPhone / iPad。每个人都必须返回YES(或YES / NO,具体取决于你想要支持的方向)。