Navigation bar icon color change after pick image swift
Problem:
I'm having navigation bar with icon's tint color with white.After that i had open the image picker for photo gallery.Then i had came back to the app.After that my navigation bar icon's are changed as black color.
I don't know why?
Solution:
It's because you had not set the tint color of your navigation bar color.Try to set as like below.
self.navbar.tintColor = UIColor.white
Comments
Post a Comment