适用于 iPhone 的 Facebook 图形 API
检查这个 Facebook GraphAPI
我正在使用这个 Graph API。它不是每次都显示登录屏幕,我启动这个应用程序。并且我可以在控制台上看到结果。我想知道如何将方法的结果保存在 NSDictionary 中以将其显示在 tableView 或某个标签中。方法是
-(IBAction)getMeFeedButtonPressed:(id)sender {
FbGraphResponse *fb_graph_response = [fbGraph doGraphGet:@"me/feed" withGetVars:nil];
NSLog(@"getMeFeedButtonPressed: %@", fb_graph_response.htmlResponse);
}
提前致谢
check this Facebook GraphAPI
I am using this Graph API. It is not showing login screen every time ,I start this app.And I can see the results on console. I want to know how can I save result of method in NSDictionary to display it in tableView or some label..Method is
-(IBAction)getMeFeedButtonPressed:(id)sender {
FbGraphResponse *fb_graph_response = [fbGraph doGraphGet:@"me/feed" withGetVars:nil];
NSLog(@"getMeFeedButtonPressed: %@", fb_graph_response.htmlResponse);
}
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在使用你的那种东西时做到了这一点。
完成此操作后,你将拥有 Feed1 中的所有数据。现在根据您想要在表格中显示的内容的要求来解析它们:)
I did this while using your kind-a stuff..
after doing this you will have all the data in Feed1. Now parse them according to your requirement of what you want to show in your table :)