我的iOS应用程序在Landscape中运行!我的viewController xib文件设置为横向方向我也强制横向模式通过我可以休息的所有代码!我的观点仍在纵向运行! 模拟器和设备上的结果相同!不同Xcode版本的结果相同
我已经遵循了这个:https://developer.apple.com/library/ios/technotes/tn2244/_index.html
答案 0 :(得分:1)
在 appdelegate.m 文件的 didFinishLaunchingWithOptions 方法中,添加以下行:
self.window.rootViewController = self.viewController;
答案 1 :(得分:0)
解决了 - 我在appdelegate didfinishLaunch()
中错过了这一行self.window.rootViewController = self.viewController;