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

iphone - UIViewController 包含方向更改

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

我有一个 UIViewController 可以说它叫做 A。在 A 中,我添加了另一个名为 B 的 UIViewController。我还在 A 上添加了另一个 UIViewController,我们称之为 C。我遇到的问题是,当 C 不是存在(即:未添加到 A 的 View Controller )然后旋转给了我正确的大小,但是当 C 添加到 A 时。然后 UIViewContoroller 的 B 没有收到正确的帧调整。为什么会这样,我该如何解决?

基本上,当我在 B 的 willAnimateToInterfaceRotation 中旋转时,无论方向如何,框架都保持不变。所以说B是纵向的,尺寸是768 x 1004。然后我有一个在A中添加C的按钮(C在B前面)。当我旋转它时,它打印出框架的大小是 768x1004。但是,如果我关闭 C(即:从父 View Controller 中删除它,在本例中为 A)。当我旋转框架时,宽度会相应改变。



Best Answer-推荐答案


更新:

我意识到我可能误解了最初的问题。但要正确回答这个问题,我需要澄清你在说什么。所以,你说:

I have a UIViewController lets say it's called A. Inside A, I've added another UIViewController called B. I am also adding another UIViewController on A, lets call it C.

那么,从本质上讲,您已经完成了以下操作?

[A addChildViewController:B];
[B didMoveToParentViewController:A];
[A addChildViewController:C];
[C didMoveToParentViewController:A];

我说对了吗?不管怎样,你继续说:

The issue I am having is, when C is not present (i.e: not added to A's view controller) then the rotation gives me the right size,

那么,你是说你从来没有调用过 addChildViewController:C 来表示一切正常吗?你继续:

... but when C is added to A. Then the UIViewController's B did not receive the correct frame adjustment.

那么,您是说如果您调用了 addChildViewController:C,并且有 transitionFromViewController:B toViewController:C?但如果是这样的话,B 根本不会得到任何轮换事件。当您从 B 过渡到 C 时,引用 B.view.frame.size 对我来说没有意义。无论如何,这是我原始答案的基础,假设您必须一直在谈论以下场景:

  • B & C 通过 addChildViewController,
  • 添加
  • B 在纵向时最初处于事件状态,
  • transitionFromViewController:B toViewController:C,
  • 您将设备旋转到横向,C 获得旋转事件,但 B 没有,
  • transitionFromViewController 回到 B,现在 View Controller B 接收外观相关的方法,例如 viewWillAppear,但在 C 处于事件状态时将错过任何旋转事件

因此,如果您需要 B 在这种情况下检查基于旋转的逻辑,则必须在 B 的 viewWillAppear 之类的方法期间执行此操作(除非父 View Controller A 显式调用其他内容在 transitionFromViewController:C toViewController:B 之后。但我现在意识到你可能并不关心旋转事件的存在与否,而只是当你检查框架时,你会得到奇怪的结果。但我不太明白你描述的场景,所以让我们继续你的问题。

所以,你继续说:

Basically when I rotate in B's willAnimateToInterfaceRotation the frame stays the same regardless of orientation. So say B is in portrait and the size is 768 x 1004.

好的,我认为我们在那里很好。你继续:

I then have a button that adds in C in A (C is in front of B).

你是说你做了transitionFromViewController:B toViewController:C?在 View Controller 包含的上下文中,术语“在 B 之前”对我来说没有意义。 C 不会走在 B 前面。你从 B 过渡到 C。

When I rotate it prints out the size of the frame is 768x1004.

这很奇怪。但是,更重要的是,“768x1004”是什么意思? C.view.frame.size?如果您从 B 过渡到 C,我认为引用 B.view.frame.size 是没有意义的。我不清楚你在说什么报告“768x1004”。

不管怎样,你继续:

However, if I dismiss C (i.e: remove it from the parent's view controller, in this case A). When I rotate the frame width changes accordingly.

当您说“从父 View Controller 中删除它”时,我假设您的意思是:

  • 调用transitionFromViewController:C toViewController:B
  • [C willMoveToParentViewController:nil]
  • 警告 C 它将消失
  • 然后用 [C removeFromParentViewController];
  • 将其移除

如果您能就我上面的解释(或误解)澄清您最初的问题,那么我们确切地知道您在做什么?我确实在容器中看到了一些关于框架尺寸的奇怪东西,但我想确保我首先理解你的问题。

原文:

automaticallyForwardAppearanceAndRotationMethodsToChildViewControllers .说真的,这个方法名是谁想出来的?!?

但这不会将方法发送到非事件 View Controller 。看起来您必须对子 Controller 的 viewWillAppear 进行一些方向检查。

注意,如果不是预先加载所有 Controller ,而是及时加载(有点像标签 View Controller ),这个问题就会消失。

关于iphone - UIViewController 包含方向更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11380220/

回复

使用道具 举报

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

本版积分规则

关注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