I am aware of tintcolor property of UINavigationBar and it is set to its default in my project.
This way the icons on this bar have blue color.
But when I add same icons in UITableViewCells, they are of grey (original png) color.
Is there a way to make it have same color as the ones on the Navigation Bar?
In iOS7 you can use a new property in order to redraw an UIImage so you can have it with the same color as the tint color.
Here is an example:
Finally you will need to set either the
setTintColorproperty of the object where you adding thatUIImageor the property in the whole project.Hope this helps!