如何在iOS上显示喜欢Facebook页面的人数

时间:2013-11-20 22:43:06

标签: ios iphone facebook facebook-like facebook-ios-sdk

我想显示喜欢页面facebook的数量。 我不需要像按钮那样,只显示真实的数字页面。

我已经有任何教程,但我没有发现这指定功能。

有人能帮帮我吗?

1 个答案:

答案 0 :(得分:1)

试试这个:(例如)

NSData *Data = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://graph.facebook.com/http://www.imdb.com/title/tt0117500/"]];
NSJSONSerialization *json = [NSJSONSerialization JSONObjectWithData:Data options:NSJSONReadingAllowFragments error:nil];
NSString *totalLikes = [json valueForKey:@"likes"]
DLog(@"%@",totalLikes);