Embed video from youtube.com into iphone app

前端 未结 6 647
耶瑟儿~
耶瑟儿~ 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:13

    Play youtube videos inline on iPhone as well. You need to set property on UIWebView

    webView.allowsInlineMediaPlayaback=YES;
    

    And you need to add &playsinline=1 to YouTube iframe embedding code.

    
    

    Tested on iPhone 4S running iOS 6.1.2 works like a charm.

提交回复
热议问题