I have some pretty standard flipping action going on:
[UIView beginAnimations:@\"swapScreens\" context:nil];
[UIView setAnimationTransition:UIViewAnimationTransi
You could use a color or an image. You can add a view to do it:
UIWindow *window = [appDelegate window];
UIView *bgView = [[UIView alloc] init];
[bgView setBackgroundColor:[UIColor blackColor]];
[window addSubView:bgView];
Or set the background color on the window directly:
[[appDelegate window] setBackgroundColor:[UIColor blackColor]];