如何使我的视图随设备方向旋转?

时间:2012-06-08 05:50:45

标签: iphone

我正在研究远程桌面协议,我面临很多问题。 你们真的很好,在很多危急情况下帮助我。

我的问题是这样的: -

如果我点击任何按钮连接到RDP之后如果我想要旋转设备它不是在唠叨

我做了shouldAutorotateToInterfaceOrientation是的,仍然是相同的

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {

    return YES;
}

1 个答案:

答案 0 :(得分:1)

在“支持的界面方向”数组下的info.plist文件中,您可以添加:

<key>UISupportedInterfaceOrientations</key>
<array>
    <string>UIInterfaceOrientationPortrait</string>
    <string>UIInterfaceOrientationLandscapeLeft</string>
    <string>UIInterfaceOrientationLandscapeRight</string>
    <string> UIInterfaceOrientationPortraitUpsideDown</string>
</array>

希望这有帮助!