I have a video file of in server of size 10MB, I want to play that video in iPad using mpmovieplayercontroller.
NSURL* url = [NSURL URLWithString:[str stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
NSLog(@"%@",url);
MPMoviePlayerController *mp = [[MPMoviePlayerController alloc] initWithContentURL:url];
[mp play];
The above is the code i used I am able to play the audio but not able get video in iPad simulator.
Can any one help me
Thanks