如何在应用程序启动时以横向模式显示视频意味着启动后
答案 0 :(得分:0)
在应用程序.plist设置文件中,您可以指定应用程序支持的方向。如果您只需要应用程序在启动后立即以水平方式显示视频,请指定:
<key>UIInterfaceOrientation</key>
<string>UIInterfaceOrientationLandscapeRight</string>
另外我相信超过3.1的iOS版本允许你使用类似的东西:
[[UIDevice currentDevice] setOrientation:UIInterfaceOrientationLandscapeRight];