Using YTPlayerView to play embedded YouTube video in iOS failed with restriction error

前端 未结 4 1342
春和景丽
春和景丽 2020-12-19 03:27

I want play embedded YouTube video in iOS app using YTPlayerView provided at https://developers.google.com/youtube/v3/guides/ios_youtube_helper

When I tried to play

4条回答
  •  清酒与你
    2020-12-19 04:01

    NSDictionary *playerVars = @{
                                 @"origin" : @"http://www.youtube.com",
                                 };
    [self.playerView loadWithVideoId:@"videoId" playerVars:playerVars];`
    

    This Objective-C version works for me.

提交回复
热议问题