NSURL *fileURL=[NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/start.m4v", [[NSBundle mainBundle] resourcePath]]];
MPMoviePlayerController *moviePlayerController=[[MPMoviePlayerController alloc]initWithContentURL:fileURL];
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(moviePlaybackComplete:) name:MPMoviePlayerPlaybackDidFinishNotification object:moviePlayerController];
[moviePlayerController prepareToPlay];
[self.view addSubview:moviePlayerController.view];
moviePlayerController.fullscreen=YES;
[moviePlayerController play];
moviePlayerController.scalingMode=MPMovieScalingModeFill;
它不起作用。总是白色,什么都没有!出了什么问题?