I'm trying to view a facebook-comments plugin in a UIWebView on an iPhone application.
I began with Facebook's iOS tutorial, where I implemented Single Sign-On. The app delegate takes care of Facebook's Single Sign-on, then redirects me to my single view controller, which displays a title bar and a UIWebView.
I load the webview with a local file called "comments.html" which has been added and copied to my bundle/project directory.
NSURL *url = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"comments" ofType:@"html"] isDirectory:NO];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webView loadRequest:request];
My html file is the bare-bones version of the plugin implementation, as generated at the Facebook Comments Plugin description site. I plugged in a url and clicked "Get Code." I took the HTML5 code that they provided me, and stuck it in an html file as so
<html>
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_GB/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="fb-comments" data-href="http://www.bombslo.com" data-num-posts="4" data-width="470"></div>
</body>
</html>
The UIWebView loads just fine on my simulator. I hosted and launched the html on my device and it loads fine in Safari. The problem is that the UIWebView will not load the Facebook-comments plugin in an embedded UIWebView.
An important thing to note is that I am not getting a blank screen. I see two animated loading bars, typical to Facebook. Also note that the Facebook-generated code comes in both HTML5 and XFBML. I've tried using both.
