导航栏标题不显示

Navigation Bar Title Not Showing

我在 AppDelegate 中这样配置我的导航栏:

func setupNavBar() {
    let barAppearance = UINavigationBar.appearance()
    barAppearance.titleTextAttributes = [NSAttributedString.Key.foregroundColor: appRed]
    barAppearance.setBackgroundImage(UIImage(color: .white), for: UIBarMetrics.default)
    barAppearance.shadowImage = UIImage()
}

这很好用,但是当我按如下方式设置标题时:

navigationController.navigationItem.title = "Hello"

这永远行不通,我没有看到任何标题。这与我将上面的行放在哪里无关(viewDidLoad、viewDidAppear 等)

尝试将视图控制器的标题 属性 设置为 "Hello"

self.title = "Hello"

如果可行,您可以在此处的 AWebster 答案中找到解释 Swift - Title Not Appearing for Navigation View Controller