IOS 6 Issue com MPMoviePlayerController

Por favor, verifique o código abaixo:

(void) moviePlayerDidExitFullscreen:(NSNotification*)notification 
{

 MPMoviePlayerController *player = [notification object];

[[NSNotificationCenter defaultCenter] removeObserver:self     

name:MPMoviePlayerDidExitFullscreenNotification
                                                  object:player];

 [player setControlStyle:MPMovieControlStyleNone]; 

    if (isPlaying)
    {
        [self stopCurrentMoviePlayer];
    }
}

A questão é que isso funciona perfeitamente no IOS 5, mas não funciona no iOS3 atualizações iPad3.

O player de filme não está fechando depois que o vídeo é concluído e eu preciso clicar no botão concluído toda vez para fechar o Movie Player.

Alguém pode fornecer uma solução para esse problema?

questionAnswers(1)

yourAnswerToTheQuestion