- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个 UIViewController 可以说它叫做 A。在 A 内部,我添加了另一个 UIViewController 叫做 B。我还在 A 上添加了另一个 UIViewController,我们称之为 C。我遇到的问题是,当 C 不是present(即:未添加到 A 的 View Controller )然后旋转给我正确的大小,但是当 C 添加到 A 时。然后 UIViewContoroller 的 B 没有收到正确的框架调整。为什么会这样,我该如何解决?
基本上,当我在 B 的 willAnimateToInterfaceRotation 中旋转时,无论方向如何,框架都保持不变。所以说 B 是纵向的,尺寸是 768 x 1004。然后我有一个按钮,可以在 A 中添加 C(C 在 B 前面)。当我旋转时,它打印出框架的大小为 768x1004。但是,如果我关闭 C(即:将其从父 View Controller 中删除,在本例中为 A)。当我旋转时,框架宽度会相应变化。
最佳答案
更新:
我意识到我可能误解了原来的问题。但要正确回答这个问题,我需要澄清你在说什么。所以,你说:
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
对我来说没有意义。无论如何,这是我原来的答案的基础,假设你必须一直在谈论以下场景:
addChildViewController
添加,transitionFromViewController:B toViewController:C
, 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 removeFromParentViewController];
如果你能澄清你最初关于我上面的解释(或误解)的问题,那么我们就知道你在做什么?我确实在容器中看到了一些关于框架尺寸的奇怪东西,但我想确保我首先理解你的问题。
原文:
参见 automaticallyForwardAppearanceAndRotationMethodsToChildViewControllers
.说真的,这个方法名是谁想出来的?!?
但这不会将方法发送到非事件 View Controller 。看起来您必须对子 Controller 的 viewWillAppear
进行一些方向检查。
请注意,如果不是预先加载所有 Controller ,而是及时加载(有点像选项卡 View Controller ),这个问题就会消失。
关于iphone - UIViewController 包含方向更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11380220/
我希望能够在代码中布局我的 View Controller ,但可以看到界面构建器中显示的布局。 我知道我可以创建一个 UIView 子类,使其 IBDesignable,并将其分配给 View Co
我有一个父 UIViewController(MainVC)。从那里我有 2 个 segue 到 2 个 UIViewControllers:FirstVC(标识符:goFirstVC)和 Secon
我有一个导航 Controller 。第一个viewcontroller 是FirstViewController 的一种。当我在 FirstViewController 中点击一个按钮时,它会将第二
我有一个自定义的动画 UIViewController 过渡,似乎 iOS 中有一个错误会破坏横向布局。在主要动画方法中,我得到了横向和纵向 View 的混合。 (纵向 View 都是纵向的,所以没问
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 9
我有一个 UIViewController,里面有 UITabBar。我正在尝试模仿 UITabBarController。 My question is how do I set or a UIVi
是否有任何方便的方法来确定是否正在从处于后台模式的应用加载 View ? 在 3.X 中,我将依赖 viewDidLoad 进行一些初始化等操作,但是对于 4.X 而言情况并非如此,因为您不能依赖调用
我将主视图 Controller 作为带有 UICollectionView 的 View Controller ,并且填充了照片。 一旦一个单元格被点击,一个新的 View Controller 被
我有一个简单的 UIViewController(单点触控),在 UI 上有一个按钮。现在,我的用例很简单 - 我想在单击按钮时重新加载 UIViewController。在某些线程上,我读到我只需要
我在它上面有一个 UIViewController 1 UIButton(添加为 subview ),在我按下 Button(见下面的图 1)之后,在它上面添加了另一个 UIViewControlle
尝试为 iPad 制作基于 Storyboard的应用程序。在其中,我需要从开始屏幕 (UIViewController) 过渡到主屏幕 (UISplitViewController),然后再到全屏
我想调整 UIViewController 的大小在 Storyboard中,所以我可以使用它的 UIViewController作为弹出 View 。 在大多数网站上,我可以读到这些操作是: 拖一个
我正在尝试从 XIB 或 Storyboard加载 ViewModel 绑定(bind)的 ViewController(使用 MvvmCross 5.0.6)。我的应用程序的逻辑是,该 View C
我正在构建一个锻炼应用程序。我的 TableViewController 中有一系列练习,每个单元格显示不同的练习。单元格转到 UIViewController。在 UIViewController
我正在尝试从 XIB 或 Storyboard加载 ViewModel 绑定(bind)的 ViewController(使用 MvvmCross 5.0.6)。我的应用程序的逻辑是,该 View C
我有一个 UIViewController,它有一个模式窗口,我想在整个界面上展示它,包括 UITabBar。 我的应用程序层次结构是这样的: UITabBarController (A) ->
我想显示另一个 ViewController 的缩小“预览”在另一个 ViewController .这可能吗?不需要交互,因此它基本上可以是屏幕截图,但按比例缩小。我可以通过手动截屏并将其保存为图像
我正在开发一个应用程序,其中 UIViewController ( firstViewController ) 包含一些 UILabels , 一个 UIButton , 和 UIView ( sub
我的标签栏中有五个标签栏项目。第五项是弹出ViewController。因此,当我单击该按钮时,当前 Controller 中将显示一个弹出窗口。我使用 UIViewController 作为子类来实
我正在开发 iOS 应用程序。 我的应用程序有 6 个按钮,每个按钮都有每个标签栏控件。 so Main screen is [btn1] [btn2] [btn3] [btn4] [btn5] [b
我是一名优秀的程序员,十分优秀!