Reputation: 81
I've a video which is being played by AVPlayer in a particular ViewController. When tapping on the Full Screen icon in the AVPlayer control bar, I want the video to be played in landscape mode in the same ViewController. I'm attaching a screenshot for this scenario.
Upvotes: 0
Views: 835
Reputation: 449
you just have to write the below code for orienting the view controller
NSNumber *value = [NSNumber numberWithInt:UIInterfaceOrientationLandscapeLeft];
[[UIDevice currentDevice] setValue:value forKey:@"orientation"];
Whenever you click the FS btn,try to orient the VC
Upvotes: 1