biloshkurskyi.ss
biloshkurskyi.ss

Reputation: 1436

MPMoviePlayerController is in fullscreen mode?

How do I determine whether MPMoviePlayerController is in full screen mode or not?

Upvotes: 3

Views: 835

Answers (1)

Steph Sharp
Steph Sharp

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

Related Questions