0

我正在调查 iMessage 应用程序(是的,我知道)并且在演示模式之间移动时遇到问题。下面的一系列截图显示,当应用程序启动时,在紧凑模式下一切正常。展开后一切仍然正确,但是当我返回压缩时,内容会向下移动,看起来与大消息导航栏的高度相同(我相信是 86)

在此处输入图像描述

当切换回紧凑视图时,我尝试将顶部约束设置为 -86,但是,这要么什么都不做,要么将其发送回应该在的位置,然后减去 86,因此它消失得太高了。我的这个项目是基于应用程序中的 IceCream 示例项目,所以不确定这个问题来自哪里(可能是自动布局,但所有内容都固定在布局指南中)

这是添加视图控制器的代码:

func loadTheViewController(controller: UIViewController) {
    // Remove any existing child controllers.
    for child in childViewControllers {
        child.willMove(toParentViewController: nil)
        child.view.removeFromSuperview()
        child.removeFromParentViewController()
    }

    // Embed the new controller.
    addChildViewController(controller)

    controller.view.frame = view.bounds
    controller.view.translatesAutoresizingMaskIntoConstraints = true
    view.addSubview(controller.view)

    controller.view.leftAnchor.constraint(equalTo: view.leftAnchor).isActive = true
    controller.view.rightAnchor.constraint(equalTo: view.rightAnchor).isActive = true
    controller.view.topAnchor.constraint(equalTo: view.topAnchor).isActive = true
    controller.view.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true

    controller.didMove(toParentViewController: self)
}

我一直在努力解决这种感觉,所以欢迎任何建议。

4

1 回答 1

1

您正在设置视图约束,但您已设置translatesAutoresizingMaskIntoConstraints为 true。自动调整大小的蒙版约束可能会与您添加的约束冲突,导致意外结果。您应该更改为:

controller.view.translatesAutoresizingMaskIntoConstraints = false

view.topAnchor此外,您应该固定到 ,而不是固定到topLayoutGuide,这将考虑到顶部导航栏。

controller.view.topAnchor.constraint(equalTo: topLayoutGuide.bottomAnchor).isActive = true

相似地,

controller.view.bottomAnchor.constraint(equalTo: bottomLayoutGuide.topAnchor).isActive = true
于 2017-01-14T16:25:13.860 回答