【发布时间】:2012-02-01 01:57:07
【问题描述】:
我想更改使用presentModalViewController 显示的 UIViewController 的方向...我在网上看到了几个解决方案(包括 SO)。但是,它们都没有解决我的问题。
我在这里播放一些视频,想将屏幕方向更改为横向 .. 有什么帮助吗?
谢谢。
使用这段代码,我部分解决了我的问题:(我的视图控制器只为 LandscapeLEFT 做景观,而不是为 LandscapeRIGHT==>为 LandscapeRight,它仍然在视图控制器中进行 LandscapeLEFT 方向更改)......有什么帮助吗?? ??????????
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}
【问题讨论】:
-
您要强制旋转,还是允许旋转?
标签: ios orientation landscape