且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

仅支持iOS 6的一个视图的不同方向

更新时间:2023-01-03 22:45:23

这为我工作如何强制UIViewController到肖像iOS 6中的方向

从UINavigationController创建一个新类别,覆盖旋转方法:

Create a new category from UINavigationController overriding the rotating methods:

-(BOOL)shouldAutorotate
{
    return [self.topViewController shouldAutorotate];
}

-(NSUInteger)supportedInterfaceOrientations
{
    return [self.topViewController supportedInterfaceOrientations];
}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
    return [self.topViewController preferredInterfaceOrientationForPresentation];
}

@end 

问候!