gilesvangruisen/Swift-YouTube-Player

Full Screen

Opened this issue · 2 comments

I can't play videos on full screen as before, any advice?

++

My videos still play in fullscreen on iPhone but it wasn't playing fullscreen on iPad. I had to make a change in YouTubePlayer.swift. If you change allowsInlineMediaPlayback to false in this section:

fileprivate func buildWebView(_ parameters: [String: AnyObject]) { webView = UIWebView() webView.allowsInlineMediaPlayback = false webView.mediaPlaybackRequiresUserAction = false webView.delegate = self webView.scrollView.isScrollEnabled = false }

it will now play in fullscreen on iPad. Or at least it is working at the time of writing this. I hope that helps.