MPMoviePlayerViewController | Permitir modo paisagem

Estou tentando transmitir um vídeo no meu aplicativo. O método que encontrei é:

NSURL *theMovieURL = [NSURL URLWithString:self.data.trailer];
        if (theMovieURL)
        {
            self.movieController = [[MPMoviePlayerViewController alloc] initWithContentURL:theMovieURL];
            [self presentMoviePlayerViewControllerAnimated:self.movieController];
            [self.movieController.moviePlayer play];
        }

Não tenho certeza se é o mais convencional, mas funciona.

O problema é que não consigo descobrir como permitir o modo paisagem, apenas para o vídeo. Devo usar algo comoshouldAutorotate oushouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation , e como ?

FYI, o aplicativo inteiro permite apenas o modo retrato.

Obrigado pela ajuda.

questionAnswers(4)

yourAnswerToTheQuestion