:
- ()
- (
presentModalViewController). - iPad
- , "".
Bam! ( - ), , , , .
, :
- , ,
viewWillAppear, [super viewWillAppear];. MPMoviePlayerDidExitFullscreenNotification MPMoviePlayerPlaybackDidFinishNotification ( "" ).
:
[self performSelector: @selector(checkAndFixStatusBar)
withObject: nil
afterDelay: 0];
[[NSNotificationCenter defaultCenter] removeObserver: self];
, 0:
- (void)checkAndFixStatusBar
{
UIInterfaceOrientation intOrient = self.interfaceOrientation;
UIInterfaceOrientation sbOrient = [[UIApplication sharedApplication] statusBarOrientation];
if (intOrient != sbOrient)
{
[[UIApplication sharedApplication] setStatusBarOrientation: intOrient animated: NO];
NSLog(@"Fixed status bar orientation");
}
}
- , , .
, .
EDIT: performSelector , ( ).