I'm rather new to iOS development, and have been breaking my head for the last days on creating a translucent navigation bar with a custom tint.
My current status:
I've created a new project with a red view embedded in a navigation view, which is embedded in a tabbar.
In the red view, i position an image partially behind the navigation view, to prove that translucency is working. It works.
I change the bar tint color to white:
[[UINavigationBar appearance] setBarTintColor: [UIColor whiteColor]];
The translucency is gone. The image doesn't shine trough anymore. So i tried:
[[UINavigationBar appearance] setBarTintColor: [[UIColor whiteColor] colorWithAlphaComponent: 0.5]];
Still not working.
Any advice on how to fix this? Thanks.