gpt4 book ai didi

iphone - 在不使用 UIWebView 的情况下在 iPhone 应用程序中播放 YouTube 视频?

转载 作者:IT王子 更新时间:2023-10-29 07:48:48 25 4
gpt4 key购买 nike

我想从我的 iPhone 应用程序播放 YouTube 视频。我必须尝试使用​​以下代码在我的 iPhone 应用程序中播放 YouTube 视频,

[self playVideo:@"http://www.youtube.com/watch?v=WL2l_Q1AR_Q" frame:CGRectMake(20, 70, 280, 250)];

- (void)playVideo:(NSString *)urlString frame:(CGRect)frame
{
NSString *embedHTML = @"\
<html><head>\
<style type=\"text/css\">\
body {\
background-color: transparent;\
color: white;\
}\
</style>\
</head><body style=\"margin:0\">\
<embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" \
width=\"%0.0f\" height=\"%0.0f\"></embed>\
</body></html>";
NSString *html = [NSString stringWithFormat:embedHTML, urlString, frame.size.width, frame.size.height];
UIWebView *videoView = [[UIWebView alloc] initWithFrame:frame];
[videoView loadHTMLString:html baseURL:nil];
[self.view addSubview:videoView];
[videoView release];
NSLog(@"%@",html);
}

但是,这段代码对我不起作用。我也尝试过 MPMoviePlayerController 代码是,

NSURL *fileURL = [NSURL URLWithString:@"http://www.youtube.com/watch?v=WL2l_Q1AR_Q"];
MPMoviePlayerController *moviePlayerController = [[MPMoviePlayerController alloc] initWithContentURL:fileURL];
[moviePlayerController.view setFrame:CGRectMake(0, 70, 320, 270)];
[self.view addSubview:moviePlayerController.view];
moviePlayerController.fullscreen = YES;
[moviePlayerController play];

这也不适合我。任何人都可以告诉我哪里做错了并提出任何想法吗?我想在 MPMoviewPlayerController 中播放 YouTube 视频,而不是使用 UIWebView。提前致谢。

最佳答案

只需使用 XCDYouTubeVideoPlayerViewController .它无需 UIWebView 即可将 youtube 视频无缝添加到您的应用。

它使用渐进式下载 + MoviePlayerAVFoundation 框架。只需为其提供一个 youtube 视频 ID 即可。

它支持全屏和非全屏,可在 iOS 模拟器上运行!!!

例子:

XCDYouTubeVideoPlayerViewController *videoPlayerViewController = [[XCDYouTubeVideoPlayerViewController alloc] initWithVideoIdentifier:@"9bZkp7q19f0"];
[self presentMoviePlayerViewControllerAnimated:videoPlayerViewController];

关于iphone - 在不使用 UIWebView 的情况下在 iPhone 应用程序中播放 YouTube 视频?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9060153/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com