i have a iPhone application in portrait mode that show a webview. In the webview there is an HTML5 video and i woutl show it in landscape mode.

So i have in my ViewControlleDelegate method (because my application is only in portrait mode):

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{
    return NO;
}

So there is a way from webkit or in my application to switch in landscape mode only when i showing a HTML5 video?

Thanks!

link|improve this question

57% accept rate
feedback

1 Answer

Try to use: [[UIApplication sharedApplication] setStatusBarOrientation:animated:]. I think it must help you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.