When I call
[[UINavigationBar appearance] setBarTintColor:[UIColor greenColor]];
in
didFinishLaunchingWithOptions
All works fine, but the following code gives white color:
[[UINavigationBar appearance] setBarTintColor:[UIColor colorWithRed:21.0 green:194.0 blue:179.0 alpha:0.5]];
I can't understand why. NavBar translucent is enabled.