i'm developping my first app on iOS 7 and facing a new problem.
What i want to do is to have a my UINavigationBar translucent AND colored,
how can i managed this ?
self.navigationController.navigationBarHidden = YES;
self.navigationController.navigationBar.translucent = YES;
self.navigationController.navigationBar.barTintColor = [UIColot greenColor];
if i set the bartintcolor the translucent property is no more valid.
I know there is a lot of questions about that but beileve me i have searched a lot and could'nt find a working solution.
thanks for all.