So in my apps, i have videos. They work on the simulator and also on my iPhone 4.
But a few people rated my apps saying the videos dont work.
I dont know if this helps, but i think most people that said this were on a iPod touch.
here is my method called when the button is pressed for the video :
-(IBAction) roa

id)sender{
NSBundle *bundle = [NSBundle mainBundle];
NSString *moviePath = [bundle pathForResource:@"Roundoff Arabian" ofType:@"m4v"];
NSURL *movieURL = [[NSURL fileURLWithPath:moviePath] retain];
MPMoviePlayerController *theMovie = [[MPMoviePlayerController alloc] initWithContentURL:movieURL];
theMovie.scalingMode = MPMovieScalingModeAspectFill;
[theMovie play];
MPMoviePlayerViewController *moviePlayer = [[MPMoviePlayerViewController alloc] initWithContentURL:movieURL];
[self presentMoviePlayerViewControllerAnimated:moviePlay er];
}
If anyone sees something in this code that might provoke this error, please let me know.
If you need more information about my code, also let me know.
Thanks,
Nick