如何将视频添加到iphone应用程序

时间:2012-10-12 16:57:46

标签: iphone objective-c ios cocoa-touch video

  

可能重复:
  Video file formats supported in iPhone

我想知道哪些格式可以放在iPhone应用程序中,有一个视图,我想把这个视频放在那里自动启动......

1 个答案:

答案 0 :(得分: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文件类型