Embed video from youtube.com into iphone app

前端 未结 6 579
耶瑟儿~
耶瑟儿~ 2021-02-04 19:42

i\'m trying to embed youtube video into my iphone application. I\'m using UIWebView and loading embed code from youtube as html string. So i have a layout with basic html markup

6条回答
  •  日久生厌
    2021-02-04 20:00

    As far as I'm aware, inline media playback is only supported on iPad, not iPhone. This would be due to size limitations with the screens.

    Edit:

    I setup a test project, with a UIWebView and the code:

    [webView setAllowsInlineMediaPlayback:YES];
    [webView loadHTMLString:@""
                        baseURL:nil];
    

    I ran the same exact code on both an iPhone and an iPad, both running iOS 4.2.1.

    The results were that the iPhone would only play the video in fullscreen mode, regardless of setting the inline media playback to YES and the iPad played the video inline. Here's a picture:

    enter image description here

提交回复
热议问题