Skip to content

Instantly share code, notes, and snippets.

View iPhoneNoobDeveloper's full-sized avatar
💻
Focusing

Nirav Jain iPhoneNoobDeveloper

💻
Focusing
View GitHub Profile
NSURL *url=[[NSURL alloc] initWithString:adVideoObj.url];
MPMoviePlayerController *moviePlayer=[[MPMoviePlayerController alloc] initWithContentURL:url];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(moviePlayBackDidFinish:) name:MPMoviePlayerPlaybackDidFinishNotification object:moviePlayer];
// moviePlayer.movieSourceType = MPMovieSourceTypeStreaming;
moviePlayer.controlStyle=MPMovieControlStyleDefault;
[moviePlayer prepareToPlay];
//moviePlayer.shouldAutoplay=YES;
[self.view addSubview:moviePlayer.view];
[moviePlayer setFullscreen:YES animated:YES];