Reputation: 1436
How do I determine whether MPMoviePlayerController
is in full screen mode or not?
Upvotes: 3
Views: 835
Reputation: 11682
From Apple's doco:
Use the MPMoviePlayerWillEnterFullscreenNotification and MPMoviePlayerWillExitFullscreenNotification notifications to detect changes to and from fullscreen mode.
There is also a fullscreen property:
A Boolean that indicates whether the movie player is in full-screen mode.
Upvotes: 4