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
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.