UINavigationBar 大标题重影
UINavigationBar Large Title Ghosting
在我的 UINavigationBar
中点击后退按钮时,小标题会变成大标题,但在动画过程中会出现奇怪的重影效果。
有没有人以前看过这个and/or知道如何更正它?
仅供normal
控件状态设置外观属性时会出现重影,供以后参考:
UIBarButtonItem.appearance().setTitleTextAttributes([NSAttributedString.Key.font : UIFont.barButtonBody()], for: UIControl.State.normal)
为了防止重影,还需要设置为highlighted
状态:
UIBarButtonItem.appearance().setTitleTextAttributes([NSAttributedString.Key.font : UIFont.barButtonBody()], for: UIControl.State.highlighted)
在我的 UINavigationBar
中点击后退按钮时,小标题会变成大标题,但在动画过程中会出现奇怪的重影效果。
有没有人以前看过这个and/or知道如何更正它?
仅供normal
控件状态设置外观属性时会出现重影,供以后参考:
UIBarButtonItem.appearance().setTitleTextAttributes([NSAttributedString.Key.font : UIFont.barButtonBody()], for: UIControl.State.normal)
为了防止重影,还需要设置为highlighted
状态:
UIBarButtonItem.appearance().setTitleTextAttributes([NSAttributedString.Key.font : UIFont.barButtonBody()], for: UIControl.State.highlighted)