我正在为Facebook上创建的页面设置一个Like按钮。 我按照本教程: http://www.raywenderlich.com/1626/how-to-post-to-a-users-wall-upload-photos-and-add-a-like-button-from-your-iphone-app
我申请了代码:
NSString *likeButtonIframe = @"<iframe src=\"http://www.facebook.com/plugins/likebox.php?id=122723294429312&width=292&connections=0&stream=false&header=false&height=62\" scrolling=\"no\" frameborder=\"0\" style=\"border:none; overflow:hidden; width:282px; height:62px;\" allowTransparency=\"true\"></iframe>\"";
NSString *likeButtonHtml = [NSString stringWithFormat:@"<HTML><BODY>%@</BODY></HTML>", likeButtonIframe];
[(UIWebView *)[self.view viewWithTag:webViewLikeTag] setFrame:CGRectMake(30, 10.0, 220, 30.0)];
[(UIWebView *)[self.view viewWithTag:webViewLikeTag] loadHTMLString:likeButtonHtml baseURL:[NSURL URLWithString:@""]];
它不会显示我的FB页面图像或类似按钮。但是,如果我使用作者的代码,它会显示页面和类似按钮。
问题是我不知道我必须为ID参数添加哪个ID。