我的iPad应用程序设置为横向模式。我尝试使用setModalTransitionStyle:UIModalTransitionStyleFlipHorizontal
让视图控制器水平翻转,但它确实如此,就好像它仍然是纵向的。有什么方法可以解决这个问题吗?
答案 0 :(得分:1)
http://aseriesoftubes.com/articles/ipad-development-101-orientation/
查看此示例教程.. 它会帮助你..
在视图之间进行更改将是您的解决方案...
答案 1 :(得分:0)
您是否考虑过将模态视图设置为LANDpace模式,如下所示:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}