如何将按钮状态的fb更改为以编程方式获取

时间:2017-02-10 18:09:58

标签: ios facebook facebook-like

我需要向登录我的iOS应用的用户显示

如果他们已经喜欢以下页面

LIKED STATUS

我已经添加了FB Like按钮,效果很好。

FBSDKLikeControl *likeButton = [[FBSDKLikeControl alloc] init];
  likeButton.objectID = @"https://www.facebook.com/mypage";
  likeButton.center = self.view.center;
  [self.view addSubview:likeButton];

我找不到将其标记为喜欢的方法。你能帮我解决这个问题吗? 感谢。

1 个答案:

答案 0 :(得分:0)

请参阅本页它需要所有东西!!

LIKE BUTTON FOR IOS APP

参考链接了解更多详情

的步骤: 首先添加框架

然后添加按钮

按键代码:     // ViewController.m(示例)

@implementation ViewController
- (void)viewDidLoad {
  [super viewDidLoad];
  FBSDKLikeControl *likeButton = [[FBSDKLikeControl alloc] init];
  likeButton.objectID = @"https://www.facebook.com/FacebookDevelopers";
  likeButton.center = self.view.center;
  [self.view addSubview:likeButton];
 }
 @end