Unable to simultaneously satisfy constraints Warnings with AVPlayerViewController embedded in storyboard
In fact, I think it’s bug on Apple side. I found a workaround : set showsPlaybackControls to YES after the AVPlayerViewController.player have been set. I modify your sample with the following lines and no more Constraint error appears : @interface ViewController () @property(weak, nonatomic) AVPlayerViewController * playerViewController; @end @implementation ViewController – (void)viewDidLoad { [super viewDidLoad]; … Read more