Ben Williamson
Ben Williamson

Reputation: 815

Animated status bar style transition, a la iPod app

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?

Upvotes: 2

Views: 702

Answers (1)

glorifiedHacker
glorifiedHacker

Reputation: 6420

Try this instead:

[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackOpaque animated:YES];

Upvotes: 4

Related Questions