10
votes

In loadWithVideoId:playerVars: I'm setting playsinline to @0.

I'm also calling ytPlayer.webView.allowsInlineMediaPlayback = NO;.

The video plays full screen on iPhone, but plays inside the web view on the iPad.

How can I get full screen playback on both iPhone and iPad?

1

1 Answers

-2
votes

Find the YTPlayerView-iframe-player.html file and add the following css style.

<style>
    body { margin: 0; width:100%%; height:100%%; }

    html { width:100%%; height:100%%; }
</style>

I see YTPlayerView play in fullscreen on iPhone and iPad both.