0

可能重复:
iOS 应用程序中的 Like 按钮

我想创建一个 Facebook 喜欢按钮,单击该按钮时我想在我的 iPhone 应用程序中实现“喜欢”Facebook 页面功能。

4

1 回答 1

1

下面给出了获取 facebook like 按钮的最新方法,

NSString *urlString=[NSString stringWithFormat:@"http://www.facebook.com/plugins/like.php?href=%@&send=false&layout=button_count&width=90&show_faces=false&action=like&colorscheme=light&font=arial&height=21",self .href];

//将需要点赞的页面链接存放在href中

NSURLRequest *fbLikeURLRequest=[NSURLRequest requestWithURL:[NSURL URLWithString:urlString]];
[_webView loadRequest:fbLikeURLRequest];

在您需要获得赞按钮的地方使用此 Web 视图!

如果您需要了解更多信息,请注册 developer.facebook.com

问候

迪帕克

于 2012-11-08T08:27:43.287 回答