在iPhone中添加视频文件

时间:2010-10-12 08:59:46

标签: iphone

我是iPhone新手。我需要有关如何在iPhone中添加视频文件的示例代码。

2 个答案:

答案 0 :(得分:1)

包括媒体播放器框架然后执行此操作:

MPMoviePlayerViewController *mediaPlayer = [[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL URLWithString:@"http://mywebsite.com/movie.mov"]]; // this can be an NSURL to a file in your bundle
 [self presentMoviePlayerViewControllerAnimated:mediaPlayer];
 mediaPlayer.view.backgroundColor = [UIColor blackColor];
 [mediaPlayer release];

有通知和回调,但这是基础。

答案 1 :(得分:-1)

你基本上可以找到你需要的所有东西 - > http://pdfcast.org/pdf/the-objective-c-programming-language ...下载pdf ...享受!