iPhone 中的 fbconnect API 响应
我像这样调用 FaceBook API:
-(IBAction)testBtnAct:(id)sender{
[facebookObj requestWithGraphPath:@"me" andDelegate:self];
}
-(IBAction)test1BtnAct:(id)sender{
[facebookObj requestWithGraphPath:@"me/friends" andDelegate:self];
}
- (void)request:(FBRequest *)request didLoad:(id)result {
NSLog(@"request didLoad..%@",result);
};
问题是,如果我单击两个按钮(testBtnAct 和 test1BtnAct),然后输出进入 - (void)request:(FBRequest *)request didLoad:(id)result
在 result
变量中。
那么我们如何知道哪个结果结果
有价值(即对于我
或我/朋友
)?
I am calling the FaceBook API like this:
-(IBAction)testBtnAct:(id)sender{
[facebookObj requestWithGraphPath:@"me" andDelegate:self];
}
-(IBAction)test1BtnAct:(id)sender{
[facebookObj requestWithGraphPath:@"me/friends" andDelegate:self];
}
- (void)request:(FBRequest *)request didLoad:(id)result {
NSLog(@"request didLoad..%@",result);
};
The issue is that if I am clicking the both button(testBtnAct and test1BtnAct) and then output comes into - (void)request:(FBRequest *)request didLoad:(id)result
in result
variable.
Then how do we know which result comes result
valuable (i.e for me
OR me/friends
)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 didload 方法中检查请求参数的请求 url 字符串。
You could check the request url string of your request parameter in the didload method.