我在Ipad應用程序中使用MPMoviePlayerController。視頻沒有顯示,但音頻將是,同樣的代碼爲iPhone在iPad應用程序中使用MPMoviePlayerController的一些問題
運作良好NSBundle *bundle = [NSBundle mainBundle];
NSString *moviePath = [bundle pathForResource:@"video" ofType:@"mp4"];
movieURL = [NSURL fileURLWithPath:moviePath];
MPMoviePlayerController *IntroMovie = [[MPMoviePlayerController alloc] initWithContentURL:movieURL];
[IntroMovie play];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(moviePlaybackDidFinish:)
name:MPMoviePlayerPlaybackDidFinishNotification
object:nil];
請建議我
感謝 Miraaj