我splitviewController
在我的应用程序中使用了一个。应用程序的方向严格设置为横向。我已经在构建设置中正确完成了。
当我在 iOS 5.1 或更高版本中运行我的应用程序时,它运行良好。但是当我在 iOS 5 或更低版本中运行我的应用程序时,应用程序的方向不会更改为横向。这是个大问题。有什么解决办法吗?
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}