禁用时更新 UIBarbuttonItem 字体 - iOS 11

Update UIBarbuttonItem font when disabled - iOS 11

到iOS10,禁用和启用的uibarbuttonitem的字体保持不变,只是颜色不同。但是,当我在 ios 11 的设备上安装我的应用程序后,禁用模式的字体得到更新(显示系统字体),而在启用模式下它显示我设置的正确字体。

因此,对于 iOS 11 的情况,我如何设置禁用模式的字体以保持应用程序的一致性。

这似乎在 iOS 11 中发生了变化,至少在我使用 UIAppearance 协议的情况下是这样。不确定这是错误还是故意的。

我还发现我无法将值屏蔽在一起(例如 .normal|.disabled),因为这意味着它只会在控件满足 所有 状态时应用字体。

所以我最终这样做了:

for controlState in [UIControlState.normal, UIControlState.disabled, UIControlState.focused, UIControlState.highlighted, UIControlState.selected] {
    barButton.setTitleTextAttributes([NSFontAttributeName: customFontName], for: controlState)
}

使用 UIAppearance 协议在任何地方更新它:

for controlState in [UIControlState.normal, UIControlState.disabled, UIControlState.focused, UIControlState.highlighted, UIControlState.selected] {
    UIBarButtonItem.appearance().setTitleTextAttributes([NSFontAttributeName: customFontName, for: controlState);
}