我正在尝试设置一个导航按钮以显示红色和半粗体。我设法更改了颜色,但是将其更改为半粗体时遇到了麻烦:
navigationItem.rightBarButtonItem = UIBarButtonItem(title: "Sign Up", style: .plain, target: self, action: #selector(signIn))
navigationItem.rightBarButtonItem?.tintColor = .red
UIBarItem.appearance().setTitleTextAttributes(
[
NSAttributedString.Key.font: UIFont.systemFont(ofSize: 12, weight: .semibold)
],
for: .normal)
我先尝试了rightBarButtonItem.appearance,但这似乎不是一个选择。
我正在使用Swift 4.2。
最佳答案
您可以将style
属性设置为.done
以使UIBarButtonItem
变为粗体。这将一直有效,直到Apple更改完成按钮在新版iOS中的外观。
navigationItem.rightBarButtonItem?.style = .done
关于swift - 将rightBarButtonItem设为粗体,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58346376/