• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

iOS6 方向

[复制链接]
菜鸟教程小白 发表于 2022-12-12 22:48:12 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我有一个关于 iOS 6 Orientation 的问题。这是我的文件 https://www.dropbox.com/s/f8q9tghdutge2nu/Orientations_iOS6.zip

在这个示例代码中,我想让 MasterViewController 只有一个 Portrait Orientation 而 DetailViewController 有一个 Portrait Orientation,Landscape Orientation。

我知道 iOS 6 的方向是由最上面的 Controller 控制的。

所以我自定义了一个UINavigationController(CustomNavigationController),在该类中设置supportedInterfaceOrientations 和shouldAutorotate。

-(NSUInteger)supportedInterfaceOrientations{
    if([[self topViewController] isKindOfClass:[DetailViewController class]]){
        return UIInterfaceOrientationMaskAllButUpsideDown;
    }else{
        return UIInterfaceOrientationMaskPortrait;
    }
}

-(BOOL)shouldAutorotate
{
    return YES;
}

除了DetailViewController在Landscape Orientation按下返回按钮时,一切都很好,MasterViewController将显示Landscape Orientation。

我可以让 MasterViewController 总是显示 Portrait Orientation 并且 DetailViewController 可以有多个方向吗?

谢谢!



Best Answer-推荐答案


谢谢!布伦南,
我还在我的博客中收集了其他方法。
http://blog.hanpo.tw/2012/09/ios-60-orientation.html

这是另外两种方式。

1.向 UINavigationController 添加类别

    @implementation UINavigationController (Rotation_IOS6)

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

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

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

    @end

2.Swap方法实现(由spoletto制作)

https://gist.github.com/3725118

关于iOS6 方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12546057/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap