UIBarButtonItems does not seem to change the color of the hue after being added to the navigation bar.
What I did was create a new one instead of new attributes.
let rightBarButtonItem = UIBarButtonItem(title: "Title", style: .plain, target: self, action: #selector(someAction)) rightBarButtonItem.tintColor = UIColor.white navigationItem.rightBarButtonItem = rightBarButtonItem
source share