我正在调查 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)
}
我一直在努力解决这种感觉,所以欢迎任何建议。