我知道iOS平台的整个应用程序开发。有谁知道如何让所有的Windows支持iOS 5平台的旋转。我目前正在使用XCode 4.3.2。编码或故事板解释都很棒!
答案 0 :(得分:0)
返回您想要支持的方向,如下所示:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return interfaceOrientation == UIInterfaceOrientationPotrait;
}
创建新的视图控制器时,您将在代码底部看到此功能。