I\'m basically trying to duplicate the behavior of the iPod app on the iPhone, where when you select a song, the music player view slides in, and the navigation bar transiti
I cooked a solution that might be more what you're looking for.
UINavigationBar
.setBarStyle:
as followscode:
- (void)setBarStyle:(UIBarStyle)style {
//Fade our content, ie background, from one style to another
CATransition *transition = [[CATransition new] autorelease];
transition.type = kCATransitionFade;
transition.duration = 0.2;
[self.layer addAnimation:transition forKey:@"content"];
[super setBarStyle:style];
}