1

我正在为在 Facebook 上创建的页面设置一个 Like 按钮。我遵循了本教程: http ://www.raywenderlich.com/1626/how-to-post-to-a-users-wall-upload-photos-and-add-a-like-button-from-your-iphone -应用程序

我应用了代码:

 NSString *likeButtonIframe = @"<iframe src=\"http://www.facebook.com/plugins/likebox.php?id=122723294429312&amp;width=292&amp;connections=0&amp;stream=false&amp;header=false&amp;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。

4

1 回答 1

0

您必须id在 url 中使用要在类似框中显示的页面的 id设置参数。

于 2012-04-05T09:24:02.387 回答