MPMoviePlayerController

To present video in your application use MPMoviePlayerController Class. Place it in UIViewController Class that is initialized with an url. – (id) initWithURL:(NSURL*)theURL { self = [super init]; if (self != nil) { [self setUrl:theURL]; } return self; } Initialize player with url. Change player’s control style or remove controls. Select type of scaling (fit,…