0
可能重複:
Video file formats supported in iPhone如何添加視頻到iPhone應用程序
我想知道哪些格式確定是一個iPhone應用程序中,有一種觀點,我想把這個視頻在那裏自動啓動...
可能重複:
Video file formats supported in iPhone如何添加視頻到iPhone應用程序
我想知道哪些格式確定是一個iPhone應用程序中,有一種觀點,我想把這個視頻在那裏自動啓動...
此代碼應該添加一個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文件類型