Is it possible to change the tint with animation for a smoother effect?
This doesn\'t work for me:
[UIView beginAnimations:nil context:nil];
[self.naviga
We find the solution in another thread : Transition Color navBar
The solution was animating the attribut barTinTColor. Here is the code :
self.navigationController.navigationBar.barTintColor = [UIColor redColor];
[UIView animateWithDuration:5.0f animations:^{
self.navigationController.navigationBar.barTintColor = [UIColor blueColor];
} completion:^(BOOL finished) {
}];