iOS13 navigation bar back bar button item tint color

531 Views Asked by At

I have a navigation bar embedded Search Controller. When Search Controller is dismissed, navigation back bar button item is reverting to default color(blue) only in iOS13.

Is there any way to fix this problem?

Here: Gif

1

There are 1 best solutions below

0
On BEST ANSWER

I faced this problem too.

I have placed a custom button instead of system back button. It worked for me.

You should put it before push to viewController. If you have two or more viewControllers, you should put it at first.

    let backItem = UIBarButtonItem()
    backItem.title = "Back" 
    backItem.tintColor = .red
    navigationItem.backBarButtonItem = backItem