IOS-视图在Landscape应用程序中定义,但在纵向模式下运行

时间:2014-10-28 07:58:53

标签: ios objective-c xcode orientation

我的iOS应用程序在Landscape中运行!我的viewController xib文件设置为横向方向我也强制横向模式通过我可以休息的所有代码!我的观点仍在纵向运行! 模拟器和设备上的结果相同!不同Xcode版本的结果相同

我已经遵循了这个:https://developer.apple.com/library/ios/technotes/tn2244/_index.html

屏幕截图:

2 个答案:

答案 0 :(得分:1)

appdelegate.m 文件的 didFinishLaunchingWithOptions 方法中,添加以下行:

self.window.rootViewController = self.viewController;

答案 1 :(得分:0)

解决了 - 我在appdelegate didfinishLaunch()

中错过了这一行
self.window.rootViewController = self.viewController;