Hi,
Ive been trying to play a movie in my app for quite some time now and have had no success. I am using the <MediaPlayer Framework>. When I press the button that is supposed to play the movie, only the audio plays and no video pops up. If you want to see an example of this here is a vid
Please help!!!! on Vimeo
Code:
NSString *path = [[NSBundle mainBundle] pathForResource:@"ChonJi" ofType:@"m4v"];
MPMoviePlayerController *theMovie = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL fileURLWithPath

ath]];
//theMovie.movieControlMode = MPMovieControlModeHidden;
theMovie.scalingMode = MPMovieScalingModeAspectFit;
[theMovie play];
BTW: Im not getting any errors at all
Thank you for your time