Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use facebook comments social plugin in iOS's uiwebview. It work fine, but it reduce the whole app framerate after open it for few minutes. Anyone experience this? Anyone have a solution for this?

I tried to create new project, then add only one uiwebview with facebook comments. The app also slow after I open it for few minutes.

This is facebook comments https://developers.facebook.com/docs/reference/plugins/comments/

Here is my code

        commentWebView = [[UIWebView alloc] initWithFrame:(CGRect){15, 50, 500, 376}];
        commentWebView.delegate = self;
        commentWebView.backgroundColor = [UIColor clearColor];
        commentWebView.opaque = NO;
        [commentLikeView addSubview:commentWebView];
        NSString* html = [NSString stringWithFormat:@"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"><html><head> <meta http-equiv=\"Content-type\" content=\"text/html; charset=utf-8\"> <title>Facebook Comments Test Page</title> <style type=\"text/css\"> .fb-comments, span, .fb-comments iframe[style] {width: %dpx !important;}</style> </head> <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_US/all.js#xfbml=1\";  fjs.parentNode.insertBefore(js, fjs); }(document, \"script\", \"facebook-jssdk\"));</script> <fb:comments href=\"%@\" num_posts=\"10\" width=\"470\"></fb:comments> </body> </html>", (int)commentWebView.frame.size.width, link];
//<div class=\"fb-comments\"  data-href=\"%@\" data-num-posts=\"10\" ></div> 
        [commentWebView loadHTMLString:html baseURL:[NSURL URLWithString:@"http://www.facebook.com"]];
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.