我已經創建了一個應用程序,播放電影按鈕click..my應用程序正在運行沒有任何警告或錯誤。但我無法看到電影不知道爲什麼? 我已經添加了媒體播放器框架,還進口了#進口在viewController.h 我按鈕動作代碼如下... - (IBAction爲)playMyMovie:(ID)發送{我看不到在iphone模擬器中播放的電影
NSBundle *bundle =[NSBundle mainBundle];
NSString *moviePath = [bundle pathForResource:@"jumps" ofType:@"mov"];
NSURL *movieURL = [[NSURL fileURLWithPath:moviePath] retain];
MPMoviePlayerController *theMovie =[[MPMoviePlayerController alloc] initWithContentURL:movieURL];
theMovie.scalingMode = MPMovieScalingModeAspectFill;
[theMovie play];
}
請告訴我我缺少什麼。