任何人都可以請指導如何從YouTube上訪問視頻,並在iphone中播放它。 因爲我是iphone新手開發更好的教程主要讚賞。,訪問iphone上的Youtube視頻(objective-c)
在此先感謝。
任何人都可以請指導如何從YouTube上訪問視頻,並在iphone中播放它。 因爲我是iphone新手開發更好的教程主要讚賞。,訪問iphone上的Youtube視頻(objective-c)
在此先感謝。
谷歌提供的YouTube API爲同一目的
請通過他聯繫到結識更多的API如何使用 http://code.google.com/apis/youtube/overview.html
Any examples/tutorials on using Google GData API - Youtube on iphone?
This GData sample Code 可以幫助你得到來自GData API的數據,用於獲取有關Youtube視頻的信息。我用在UIWebView中播放視頻下面的代碼的幫助
- (void)embedYouTube:(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];}
調用此函數
[self embedYouTube:self.youTubeLink frame:CGRectMake(0, 0, 320, 370)];
其中self.youTubeLink將包含stringURL加載YouTube影片。