Enumeration: MPMovieScalingMode

Overview

Constants describing how the movie content is scaled to fit the frame of its view.

Constant Summary

MPMovieScalingModeNone

Do not scale the movie. available in ios 2.0 and later.declared in mpmovieplayercontroller.h.

MPMovieScalingModeAspectFit

Scale the movie uniformly until one dimension fits the visible bounds of the view exactly. in the other dimension, the region between the edge of the movie and the edge of the view is filled with a black bar. the aspect ratio of the movie is preserved.available in ios 2.0 and later.declared in mpmovieplayercontroller.h.

MPMovieScalingModeAspectFill

Scale the movie uniformly until the movie fills the visible bounds of the view. content at the edges of the larger of the two dimensions is clipped so that the other dimension fits the view exactly. the aspect ratio of the movie is preserved. available in ios 2.0 and later.declared in mpmovieplayercontroller.h.

MPMovieScalingModeFill

Scale the movie until both dimensions fit the visible bounds of the view exactly. the aspect ratio of the movie is not preserved.available in ios 2.0 and later.declared in mpmovieplayercontroller.h.