Animated status bar style transition, a la iPod app
Posted
by Ben Williamson
on Stack Overflow
See other posts from Stack Overflow
or by Ben Williamson
Published on 2010-04-07T03:44:12Z
Indexed on
2010/04/07
3:53 UTC
Read the original article
Hit count: 284
iphone
In the iPod app, the navigation views have the default status bar style, and the Now Playing view is in the black style. The transition between them is animated with a crossfade. I want to do that.
My first attempt:
[UIView beginAnimations:@"whatever" context:nil];
[UIView setAnimationDuration:0.5];
self.navigationController.navigationBar.barStyle = UIBarStyleBlack;
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleBlack
[UIView commitAnimations];
No joy, it pops to black. Takers?
© Stack Overflow or respective owner