0

我了解 iOS 平台的整个应用程序开发。有谁知道如何让所有的窗口都支持 iOS 5 平台的旋转。我目前正在使用 XCode 4.3.2。无论是编码还是故事板解释都会很棒!

4

1 回答 1

0

返回您想要支持的方向,如下所示:

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

当你创建一个新的视图控制器时,你会在代码底部看到这个函数。

于 2012-06-11T15:20:22.077 回答