我的应用不支持纵向模式,但有时会变为纵向模式。我正在使用Xcode 5.02&我在iOS7上运行我的应用程序。我取消选中设置中的肖像模式,使其不支持肖像,但在某个时间点它变成了肖像,我没有任何线索,任何人帮助我,我的应用程序是主 - 细节基础。以下是app delegate&中的代码段。 dashboardNavController是UINavigationController
self.window.rootViewController = self.dashboardNavController;
[self.window makeKeyAndVisible];
如果需要,我很乐意提供更多信息,提前致谢
答案 0 :(得分:0)
在ViewDidLoad中尝试此操作
CGAffineTransform transform = CGAffineTransformMakeRotation(-M_PI/2);
self.view.transform = transform;
// Repositions and resizes the view.
// If you need NavigationBar on top then set height appropriately
CGRect contentRect = CGRectMake(0, 0, self.view.size.height, self.view.size.width);
self.view.bounds = contentRect;