0

所以我的 iPhone 应用程序目前有一个填充整个屏幕的 tabviewcontroller。该应用程序仅在纵向模式下运行。我的任务是检测设备方向的变化,一旦它变为横向,就会有一个新的 uiview 填充整个屏幕。

我已经有设备方向变化检测工作。一旦检测到方向变化,我已经使用 NSNotificationCenter 成功调用了辅助方法 deviceOrientationChanged。如果更改为横向模式,我会运行某个代码块。

在这段代码中,我已经尝试了各种方法,但都没有成功。简单地说 self.view = newViewThing; 不起作用,因为状态栏仍然存在于顶部并且选项卡仍然存在于底部。我还尝试将此 newViewThing 作为子视图添加到 UIWindow。这不起作用,因为在添加视图时,它的方向不正确。

问题是:一旦检测到设备方向变化,有没有办法加载全新的 uiview?先感谢您。

4

1 回答 1

1

是的,有一种方法可以加载新视图。我是这样在我的应用程序中制作的:

- (void)orientationChanged:(NSNotification *)notification
{
    // We must add a delay here, otherwise we'll swap in the new view
    // too quickly and we'll get an animation glitch
    [self performSelector:@selector(updateLandscapeView) withObject:nil afterDelay:0];
}

- (void)updateLandscapeView
{
    UIDeviceOrientation deviceOrientation = [UIDevice currentDevice].orientation;
    if (UIDeviceOrientationIsLandscape(deviceOrientation) && !isShowingLandscapeView)
    {
        [self presentModalViewController:self.landscapeView animated:YES];
        isShowingLandscapeView = YES;
    }
    else if (deviceOrientation == UIDeviceOrientationPortrait && isShowingLandscapeView)
    {
        [self dismissModalViewControllerAnimated:YES];
        isShowingLandscapeView = NO;
    }    
}

而且我已将此代码添加到viewDidLoad

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

这段代码dealloc

[[NSNotificationCenter defaultCenter] removeObserver:self];
[[UIDevice currentDevice] endGeneratingDeviceOrientationNotifications];
于 2012-06-13T06:27:40.007 回答