2012-10-12 79 views

回答

1

此代碼應該添加一個MPMoviePlayerController到您的視圖,並自動開始使用已導入到你的項目。

NSString *filepath = [[NSBundle mainBundle] pathForResource:@"filename" ofType:@"mp4"]; 
NSURL *fileURL = [NSURL fileURLWithPath:filepath]; 
player = [[MPMoviePlayerController alloc] initWithContentURL:fileURL]; 
player.frame = CGRectMake(0, 0, 1024, 768); 
[self.view addSubview:player.view]; 
player.fullscreen = NO; 
[player play]; 

*例如我使用的.mp4文件類型

相關問題