当前位置:  开发笔记 > 编程语言 > 正文

如何在Tabbar应用中将视图旋转为横向

如何解决《如何在Tabbar应用中将视图旋转为横向》经验,为你挑选了1个好方法。

我有一个基于tabbar的应用程序.

我在Interface Builder中构建了2个视图,一个是纵向视图,另一个是横向模式.

现在,我想要像iPod应用程序.我想将横向视图设置为全屏,并隐藏标签栏和状态栏.

我的工作基础是:

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
                                duration:(NSTimeInterval)duration { 
    if (self.landscape) {
        if (toInterfaceOrientation == UIInterfaceOrientationPortrait)
        {
            self.view = self.portrait;
            self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(360));
        }
        else if (toInterfaceOrientation == UIInterfaceOrientationLandscapeLeft)
        {
            self.view = self.landscape;
            self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(-90));
        }
        else if (toInterfaceOrientation == UIInterfaceOrientationLandscapeRight)
        {
            self.view = self.landscape;
            self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(90));
        }
        else
        {
            self.view = self.portrait;
            self.view.transform =  CGAffineTransformMakeRotation(degreesToRadian(-180));
        }
    }
}

但所有工作都很混乱.横向视图未正确填充区域,控件位于错误的位置,与首先设计的不同.

而且,我还没有找到隐藏其他一切的方法......



1> 小智..:

查看Apple的"AlternateViews"示例代码.

基本思想是您可以通过通知检测设备的物理方向,然后"模态"激活新的视图控制器并让它请求全屏.您可以通过使用shouldAutorotate来禁用界面旋转...仅针对一个方向返回YES,因为您通过通知手动执行所有操作.更改物理方向时,会显示或取消模态视图控制器.

推荐阅读
勤奋的瞌睡猪_715
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有