-1

我想在我的原生 iphone 应用程序中实现类似 facebook 的按钮。这样用户就可以喜欢我的 facebook 页面。我已经在分享 Facebook 状态更新,但无法实现类似按钮。

我无法在网上找到任何有用的资源。请帮忙。

4

1 回答 1

0

Aaaand 这是我之前准备的一个(使用 FBConnect,FB api):如果您的帖子 ID 为postId

NSString *graphPath = [[NSString alloc] 
                                       initWithFormat:@"%@/likes",
                                       postId];
NSMutableDictionary *params = [[NSMutableDictionary alloc] init];
[[delegate facebook] requestWithGraphPath:graphPath andParams:params andHttpMethod:@"POST" andDelegate:self];

当然,您需要更改获得 Facebook 单例的方式(我使用了 [delegate Facebook])。

于 2012-07-04T06:51:36.823 回答