I\'m having an issue with a UIBarButtonItem. I use the appearance proxy to set its color for states Normal and Disabled and I do this in t
UIBarButtonItem
Normal
Disabled
This was also my issue, when running on iOS versions 10.*. Setting the button's foreground color solved the issue for me.
self.saveButton.setTitleTextAttributes([NSForegroundColorAttributeName: UIColor.gray], for: UIControlState.disabled)