我需要向登录我的iOS应用的用户显示
如果他们已经喜欢以下页面
我已经添加了FB Like按钮,效果很好。
FBSDKLikeControl *likeButton = [[FBSDKLikeControl alloc] init];
likeButton.objectID = @"https://www.facebook.com/mypage";
likeButton.center = self.view.center;
[self.view addSubview:likeButton];
我找不到将其标记为喜欢的方法。你能帮我解决这个问题吗? 感谢。
答案 0 :(得分:0)
请参阅本页它需要所有东西!!
参考链接了解更多详情
的步骤: 首先添加框架
然后添加按钮
按键代码: // 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