nandini23
nandini23

Reputation: 81

Video play using AVPlayer in landscape mode

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.enter image description here

Upvotes: 0

Views: 835

Answers (1)

Diksha
Diksha

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

Related Questions