0
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;

It dose not work.Always white,nothing at all!What's wrong?

4

0 回答 0