-1

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

我的问题是这样的: -

如果我点击任何按钮连接到 RDP 之后如果我想旋转设备它不会发生

我做了 shouldAutorotateToInterfaceOrientation 是的,还是一样

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {

    return YES;
}
4

1 回答 1

1

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

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

希望这可以帮助!

于 2012-06-08T06:09:31.190 回答