UINavigationBar大标题重影

时间:2019-02-20 01:24:59

标签: ios animation uinavigationbar large-title

在我的UINavigationBar中点击后退按钮时,小标题变成大标题,但在动画过程中具有奇怪的重影效果。

以前有人看过和/或知道如何更正吗?

UINavigationBarGhosting

1 个答案:

答案 0 :(得分:1)

为将来参考,当您仅为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)