设置 UIBarButtonItem 外观导致后退按钮出现奇怪的行为

Setting UIBarButtonItem appearance resulted in weird behaviour with back button

        let attributes = [
            NSAttributedString.Key.foregroundColor: UIColor.orange,
            NSAttributedString.Key.font: UIFont.systemFont(ofSize: 22)
        ]
        // set nav bar button item
        // solution 1 - this will not work properly.
        // refer to the Imgur 
        UINavigationBar.appearance().titleTextAttributes = attributes
        UIBarButtonItem.appearance(whenContainedInInstancesOf: [UINavigationBar.self]).setTitleTextAttributes(attributes, for: .normal)
        
        // 
        // solution 2: this works fine
        let app = UIBarButtonItemAppearance()
        app.normal.titleTextAttributes = attributes
        
        let navBarApp = UINavigationBarAppearance()
        navBarApp.configureWithOpaqueBackground()
        navBarApp.buttonAppearance = app
        UINavigationBar.appearance().standardAppearance = navBarApp

我不确定为什么 解决方案 1 不能完全工作,但我认为问题与这一行有关 UIBarButtonItem.appearance(whenContainedInInstancesOf: [UINavigationBar.self]).setTitleTextAttributes(attributes, for: .normal)。这不是为 navBar 和 BarButtonItem 设置外观和样式 (font/color/etc) 的正确方法吗?

解决方案 2 工作正常,所以我不打算附加任何东西。

编辑:看起来 link 已过期。这是解决方案 1 的新 Link:https://imgur.com/a/DJAzrSw

我设法解决了解决方案 1 的问题,但老实说我不知道​​为什么我需要 normalhighlighted 状态才能正常工作。

需要添加以下内容

UIBarButtonItem.appearance(whenContainedInInstancesOf: [UINavigationBar.self]).setTitleTextAttributes(attributes, for: .highlighted)