我有一个问题。 如果我们处于横向模式,我想在纵向模式下强制加载视图控制器,当我们向后钻取时,应该以横向模式加载前一个视图控制器。 请帮忙。 我添加了链接,其中包含此问题的屏幕截图。 https://drive.google.com/folderview?id=0B0VhXuZwbqnsUE5GcmVqcnJLeFU&usp=sharing
答案 0 :(得分:0)
使用此
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationPortrait;
}
答案 1 :(得分:0)
试试这个。它可能对你有帮助。
- (BOOL)shouldAutorotate
{
return YES;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationPortrait ;
}
您必须根据需要锁定界面方向。