จำเป็นจะต้องดีดออกจาก app แต่ถ้าอยากให้เล่นใน app ก็สามารถทำได้ครับ
- (void)embedYouTube:(NSString *)urlString frame:(CGRect)frame {
NSString *embedHTML = @"starthtml starthead\ \ endhead startbody style=\"margin:0\">\
\
endbody endhtml";
NSString *html = [NSString stringWithFormat:embedHTML, urlString,
frame.size.width, frame.size.height];
if (!webView) {
webView = [[UIWebView alloc] initWithFrame:frame];
[self.view addSubview:webView];
}
[webView loadHTMLString:html baseURL:nil];
}
หลังจากนั้นแค่เรียก
[self embedYouTube:self.url frame:CGRectMake(20, 20, 280, 300)];
more information
http://apiblog.youtube.com/2009/02/youtube-apis-iphone-cool-mobile-apps.html
http://iphoneincubator.com/blog/audio-video/how-to-play-youtube-videos-within-an-application
No comments:
Post a Comment