Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我了解 iOS 平台的整个应用程序开发。有谁知道如何让所有的窗口都支持 iOS 5 平台的旋转。我目前正在使用 XCode 4.3.2。无论是编码还是故事板解释都会很棒!
返回您想要支持的方向,如下所示:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return interfaceOrientation == UIInterfaceOrientationPotrait; }
当你创建一个新的视图控制器时,你会在代码底部看到这个函数。