我希望我的应用程序是横向的。我尝试了一切,我的故事板的方向是横向的,我在 info.plist 中更改了支持的方向和初始方向。谁能帮我?
在 iOS 6 模拟器中它是横向的。
我希望我的应用程序是横向的。我尝试了一切,我的故事板的方向是横向的,我在 info.plist 中更改了支持的方向和初始方向。谁能帮我?
在 iOS 6 模拟器中它是横向的。
在 iOS 5 中,您需要在每个视图控制器中实现以下方法。
// Called only in IO 5 and earlier.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight ||
interfaceOrientation == UIInterfaceOrientationLandscapeLeft );
}
并在 Info.plist 中将 UIInterfaceOrientation “初始界面方向”设置为 UIInterfaceOrientationLandscapeRight
并以横向模式布置您的视图。