我试图将框架设置为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]];
请让我知道是否可以更改视图控制器的背景颜色。