我是iPhone新手。我需要有关如何在iPhone中添加视频文件的示例代码。
答案 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 ...享受!