Wednesday, August 18, 2010

การ embed youtube ใน UIWebView

โดยปรกติแล้วการเล่นวีดีโอผ่าน youtube ส่วนมากจะเป็น 3rd party ที่เวลาเล่นแล้ว
จำเป็นจะต้องดีดออกจาก 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: