iOS 6, Xcode 4.5 video not exiting when done playing
I am using this code to play a video on iOS 6: -(void)GrommeVideo4 { NSURL *url5 = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"Flickers" ofType:@"mp4"]]; grommePlayer4 = [[MPMoviePlayerController alloc] initWithContentURL:url5]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(moviePlayBackDidFinish:) name:MPMoviePlayerPlaybackDidFinishNotification object:nil]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(moviePlayerWillExitFullscreen:) name:MPMoviePlayerWillExitFullscreenNotification object:nil]; grommePlayer4