手动检测旋转到横向

时间:2010-06-09 11:34:54

标签: iphone rotation device

我正在为每个页面开发基于UITabBarController和UIViewControllers的iPhone应用程序。应用程序只需要以纵向模式运行,因此每个视图控制器+应用程序委托都使用以下代码行:

- (BOOL)shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation)interfaceOrientation {
 return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

有一个视图控制器,我想在iPhone旋转到landscapeleft时弹出UIImageView。虽然宽度和高度为320x460(因此它的肖像),但图像的设计看起来很有风景。

我是如何/应该手动检测这种类型的旋转,只是在这个特定的视图控制器中,而不是在整个视图上自动旋转?

托马斯

更新:

谢谢!

我在viewDidLoad中添加了这个监听器:

 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didRotate:)name:UIDeviceOrientationDidChangeNotification object:nil];

didRotate看起来像这样:

- (void) didRotate:(NSNotification *)notification

    {   
        UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];

        if (orientation == UIDeviceOrientationLandscapeLeft)
        {
            //your code here

        }
    }

2 个答案:

答案 0 :(得分:20)

我在一个旧项目中需要它 - 希望它仍然有用......

1)注册通知:

[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
[[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(detectOrientation)
                                             name:UIDeviceOrientationDidChangeNotification
                                           object:nil]; 

2)然后你可以测试变化时的旋转:

-(void) detectOrientation {
    if (([[UIDevice currentDevice] orientation] == UIDeviceOrientationLandscapeLeft) || 
        ([[UIDevice currentDevice] orientation] == UIDeviceOrientationLandscapeRight)) {
        [self doLandscapeThings];
    } else if ([[UIDevice currentDevice] orientation] == UIDeviceOrientationPortrait || [[UIDevice currentDevice] orientation] == UIDeviceOrientationPortraitUpsideDown) {
        [self doPortraitThings];
    }   
}

希望有所帮助!

答案 1 :(得分:2)

Comic Sans答案的更好的代码将在下面..他的代码不会总是正确启动(在我的测试中只有80%的时间)

-(void) detectOrientation {
    if (UIDeviceOrientationIsLandscape([[UIDevice currentDevice] orientation])) {
        [self setupForLandscape];
    } else if (UIDeviceOrientationIsPortrait([[UIDevice currentDevice] orientation])) {
        [self setupForPortrait];
    } 
}