I've been able to achieve embedding and playback with a YouTube video using loadHTMLString: baseURL:, but despite the fact that I have the correct URL for a Facebook video, I've been unable to reuse the code for Facebook.
Here's what I've got. videoUrl is a link to a FB video:
NSString *youTubeHTMLTemplate = @"<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 *finalHtml = [NSString stringWithFormat:youTubeHTMLTemplate, videoUrl, 320.0, 480.0];
[self.webView loadHTMLString: finalHtml baseURL:[NSURL URLWithString:@"http://www.youtube.com"]];
I don't see as much discussion about embedding Facebook videos as I do YouTube, so I'm wondering if I'm overcomplicating something, but the same approach worked for YT.
Has anyone been able to accomplish this?
Thanks.