i have situation where i need to have blue color as navigation bar color for first view and for second view i should have as green color .when i tried to apply it using below code.
in viewdidload for 1st view: self.navigationController.navigationBar.barTintColor = [UIColor bluecolor];
in view did load in second view: self.navigationController.navigationBar.barTintColor = [UIColor greenColor];
the color remains same as in first view i was unable to change it,and how to remove glassy effect on navigation bar.
translucent
property that you can set toNO
. – Caleb