0

我正在向 tabbarcontroller 添加通知/警报类型视图,这是我的应用程序 rootview 控制器,以便我获得自动旋转的好处。

但是,当旋转我的警报视图时,最终会出现在导航栏和标签栏下方。

http://dl.dropbox.com/u/6851931/2012-06-17%2011.08.42.jpg

http://dl.dropbox.com/u/6851931/2012-06-17%2011.08.47.jpg

这两张图片显示了它在旋转时的作用和不旋转时的样子。有没有办法让视图始终位于顶部并获得旋转支持?

这是我添加视图的代码。

[self.customImageView whenTapped:^{

        MA_MobileAppDelegate *appDelegate = (MA_MobileAppDelegate *)[[UIApplication sharedApplication] delegate];

        UAModalPanel *modalPanel = [[MSPicturePreview alloc] initWithFrame:appDelegate.tabBarController.view.bounds withimage:self.customImageView.image];

        [appDelegate.tabBarController.view addSubview:modalPanel];


        [modalPanel showFromPoint:[self.contentView convertPoint:[self.customImageView center] toView:appDelegate.tabBarController.view]];

    } ];
4

1 回答 1

1

当您创建modalPanel添加标签时,您可以手动将其带到前面

modalPanel.tag = 111;

在您的视图控制器willRotateToInterfaceOrientation功能上执行以下操作

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
    //Get the modalPanel
    UAModalPanel *modalPanel = [appDelegate.tabBarController.view viewWithTag:111];
    //Bring it to front
    [appDelegate.tabBarController.view bringSubviewToFront:modalPanel];
}
于 2012-06-17T22:23:30.650 回答