我正在为两个UIViewController实现UINavigationBar:假定为ControllerA和ControllerB。
ControllerA 具有半透明的UINavigationBar,具有backgroundColor = .clear属性。
ControllerB 具有 prefersLargeTitles 属性和白色背景。
我应该从 ControllerA -> ControllerB 弹出并弹出。这里是我在 controllerA 生命周期方法中实现的代码:
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
if #available(iOS 11.0, *) {
navigationItem.largeTitleDisplayMode = .never
}
navigationController?.navigationBar.isTranslucent = true
navigationController?.navigationBar.tintColor = .white
navigationController?.navigationBar.backgroundColor = UIColor.clear
navigationController?.navigationBar.setBackgroundImage(UIImage(), for: .default)
navigationController?.navigationBar.shadowImage = UIImage()
navigationController?.navigationBar.barTintColor = .clear
navigationController?.navigationBar.titleTextAttributes = [
.font: FontFamily.SFProRounded.bold.font(size: 18),
.foregroundColor: UIColor.white
]
}
override func viewWillDisappear(_ animated: Bool) {
super.viewWillDisappear(animated)
if #available(iOS 11.0, *) {
navigationController?.navigationBar.prefersLargeTitles = true
navigationItem.largeTitleDisplayMode = .always
navigationController?.navigationBar.largeTitleTextAttributes = [
.font: FontFamily.SFProRounded.bold.font(size: 22),
.foregroundColor: UIColor.black
]
}
navigationController?.navigationBar.titleTextAttributes = [
.font: FontFamily.SFProRounded.bold.font(size: 18),
.foregroundColor: UIColor.black
]
navigationController?.navigationBar.tintColor = .black
navigationController?.navigationBar.backgroundColor = UIColor.white
navigationController?.view.backgroundColor = UIColor.white
navigationController?.navigationBar.barTintColor = .white
}
以下:我在不同的iOS版本上遇到的问题:
在点击后退按钮以关闭控制器时,动画和标题颜色不正确。此处的视频:https://youtu.be/1g9esUgYDK8
在弹出动画期间,大标题不会随解雇的控制器一起移动。此处的视频:https://youtu.be/25k3oz2_wcE
如何解决?预先谢谢你
答案 0 :(得分:0)
最后我添加了
if #available(iOS 11.0, *) {
navigationItem.largeTitleDisplayMode = .always
}
在 ControllerB 和
的 ViewDidLoad 中if #available(iOS 11.0, *) {
navigationItem.largeTitleDisplayMode = .never
}
在 ControllerA 的 ViewDidLoad 中 它按我的预期工作。
请注意,您只需设置一次 prefersLargeTitles ,最好是在打开应用程序时设置