AVPlayerViewController在将框架设置为UIVIew后更改UIView的背景颜色吗?

时间:2018-09-19 15:51:55

标签: uiview avplayerviewcontroller

我试图将框架设置为UIView,然后我想将默认的背景颜色从灰色更改为红色。

[self.view setFrame:CGRectMake(15,60,self.view.frame.size.width-30,self.view.bounds.size.height)]

AVPlayerLayer * playerLayer = [AVPlayerLayer playerLayerWithPlayer:_moviePlayerViewController.player];     playerLayer.frame = self.view.bounds;     [self.view.layer addSublayer:playerLayer];

更改背景颜色后,背景视图仍为灰色且未更改。     [self.view setBackgroundColor:[UIColor redColor]];

请让我知道是否可以更改视图控制器的背景颜色。

0 个答案:

没有答案