iOS 7 Changing UINavigationBar titleView alpha

Viewed 5483

So I am using the UINavigationBar component of iOS7, but not the UINavigationController itself. When I push a new view with my custom navigation controller, I want to change the title's alpha to 0.0 and then back, but I can't seem to get it work.

I am trying to do this

vc1.navBar.topItem.titleView.alpha = 0.1;

It doesn't seem to have any effect. Am I missing something here, is there a correct way to achieve this?

3 Answers
Related