如何使用 Swift 更改工具栏按钮项标题颜色

How to change toolbar button item title color using Swift

我们在 Obj-C 使用

更改工具栏按钮项目标题颜色
    [_anyToolbarButton setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys: [UIColor lightGrayColor], NSForegroundColorAttributeName,nil] forState:UIControlStateNormal];

但在使用 Swift 时我无法更改。

您可以在 swift 中这样做:

_anyToolbarButton.setTitleTextAttributes([NSForegroundColorAttributeName: UIColor.lightGrayColor()], forState: .Normal)
toolbar.tintColor = UIColor.red