Autoplay YouTube videos in WKWebView with iOS 11

前端 未结 5 892
小鲜肉
小鲜肉 2020-12-17 17:19

I want to have small YouTube player in my app. The only way i found to be recommended is embeding web page with YouTube player into my app. So i used WKWebView and loaded em

5条回答
  •  余生分开走
    2020-12-17 17:29

    var youTubeVideoHTML: String = "  
    " func playVideoWithId(videoId: String) { var html: String = String(format: youTubeVideoHTML, self.frame.size.width, self.frame.size.height, videoId) }

    Or Alternative you can use

    YTPlayer For Playing Youtube Video

提交回复
热议问题