View Size for YTPlayer

后端 未结 4 1409
挽巷
挽巷 2021-01-03 09:29

I am using the iOS YouTube Player helper (https://developers.google.com/youtube/v3/guides/ios_youtube_helper) and it works just fine but the preview image is not the size of

4条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-03 09:49

    You can reset webView size in the following method:

    - (void)viewDidAppear:(BOOL)animated {
      [super viewDidAppear:animated];
        //
       self.player.webView.bounds = CGRectMake(0, 0, self.player.bounds.size.width, self.player.bounds.size.height*1.5);
    
        [self.player.webView setNeedsDisplay];
    }
    

提交回复
热议问题