0

When I play a video on iphons safari automatically go on full screen mode. Can you detect it with a javaScript Event?

mal200
  • 389
  • 7
  • 19
  • try [this](http://stackoverflow.com/questions/5054560/can-i-avoid-the-native-fullscreen-video-player-with-html5-on-iphone-or-android) – Amol Mar 11 '13 at 12:02

1 Answers1

0
- (void)webViewDidFinishLoad:(UIWebView *)aWebView 
{
    [webView sizeToFit];

}
Abha
  • 1,032
  • 1
  • 13
  • 36