我在 UITabBarController 中有一个 UINavigationController。我尝试了社区关于 iOS 6 中自动旋转的所有建议,但没有成功,最后我决定为 UINavigationController 创建一个类别,该类别没有对 orientaion 进行任何更改(尽管确实调用了函数)
然后我为 UITabBarController 创建了一个类别,如下所示:
#import "UITabBarController+ios6Rotate.h"
@implementation UITabBarController (ios6Rotate)
-(BOOL)shouldAutorotate
{
return YES;
}
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationPortraitUpsideDown;;
}
@end
得到了这个:
Terminating app due to uncaught exception 'UIApplicationInvalidInterfaceOrientation', reason: 'preferredInterfaceOrientationForPresentation must return a supported interface orientation!
但是我所有的方向都支持?!嗯
然后我把代码改成这样:
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortraitUpsideDown;
}
这使我的应用程序颠倒了,但仍然不会旋转。我不明白发生了什么事。在这一点上,我想在 ios6 中看到任何形式的轮换,我不在乎哪一边,但似乎没有任何效果。
Best Answer-推荐答案 strong>
您应该确保添加正确的supportedInterfaceOrientations 。您可以尝试在您的类别中调用相应的 viewController 的方向方法。
例如在 UINavigationController 类别中会是这样的
-(BOOL)shouldAutorotate
{
return [self.topViewController shouldAutorotate];
}
-(NSUInteger)supportedInterfaceOrientations
{
return [self.topViewController supportedInterfaceOrientations];
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return [self.topViewController preferredInterfaceOrientationForPresentation];
}
关于ios - UITabBarController 中的 UINavigationController 在 iOS 6 中不会旋转,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/15876005/
|