我有一个通过 UITabBarController
控制多个 View 的情况。其中一个 View 是通过 UINavigationController
控制的。该应用程序应该只支持所有 View 的肖像......除了一个单独的 View 。此 View 被推送到导航 Controller 的堆栈中,并且应该允许纵向和横向。
我已经尝试了所有我能想到的解决方案,但要么解决方案不起作用,要么更糟糕的是完全无法预测。
有人用干净的方式解决了这个问题吗?
您使用 presentModalViewController
或 pushViewController
呈现的 View Controller 应该支持任何方向,使用此方法:
- (BOOL)shouldAutorotateToInterfaceOrientationUIInterfaceOrientation)interfaceOrientation
{
return YES;
}
使用此方法,当您以横向显示 Controller 时,它也将正确地以横向显示。
关于iphone - 允许一个 View 支持多个方向,而其他 View 不支持 iPhone,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5735060/
欢迎光临 OGeek|极客世界-中国程序员成长平台 (https://ogeek.cn/) | Powered by Discuz! X3.4 |