你怎么知道哪个FBRequest发起了请求didLoad:方法?

时间:2012-06-08 14:30:20

标签: ios facebook facebook-graph-api ios5

在facebook iOS API文档中,我创建了两种方法,可以从图表中请求好友列表,或者有关当前登录用户的详细信息。

- (IBAction)showMyFriends:(id)sender {
    AppDelegate *delegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
    [[delegate facebook] requestWithGraphPath:@"me/friends" andDelegate:self];
    NSLog(@"Getting friends list");
}
- (IBAction)showMyDetails:(id)sender {
    AppDelegate *delegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
    [[delegate facebook] requestWithGraphPath:@"me" andDelegate:self];
    NSLog(@"Getting my info");
}

到目前为止听起来很合理。响应这些调用的委托方法是:

- (void)request:(FBRequest *)request didLoad:(id)result
{
    NSLog(@"Got a request");

// Print out friends
//    NSArray * items = [NSArray alloc];
//    items = [(NSDictionary *)result objectForKey:@"data"];
//    for (int i=0; i<[items count]; i++) {
//        NSDictionary *friend = [items objectAtIndex:i];
//        long long fbid = [[friend objectForKey:@"id"]longLongValue];
//        NSString *name = [friend objectForKey:@"name"];
//        NSLog(@"id: %lld - Name: %@", fbid, name);
//    }


// Print out self username
    NSString *username = [result objectForKey:@"name"];
    NSLog(@"Username is %@", username);
    helloGreeting.text = [NSString stringWithFormat:@"Hello %@", username];

}

问题:在didLoad中,如何查看当前调用与哪个图形请求相关?例如,在上面的代码中,我要么打印好友列表,要么打印出用户名,所以我想图像我需要根据请求类型将代码包装在某些case / switch语句中。

我在API上找不到任何明显的东西,确保只执行相关响应代码的最佳方法是什么?

3 个答案:

答案 0 :(得分:3)

如上所述,您可以检查请求对象以检查生成响应的请求。您可以使用请求对象的url属性来更方便地检查使用了哪个请求。

E.g。获取朋友列表的请求

[facebook requestWithGraphPath:@"me/friends" andDelegate:self];

您可以检查请求对象的URL是否为:

https://graph.facebook.com/me/friends

请求的以下实现didLoad将检测朋友列表请求并迭代每个朋友。

- (void)request:(FBRequest *)request didLoad:(id)result {

    // Friends request
    if([request.url rangeOfString:@"me/friends"].location != NSNotFound) {

        NSArray *friends = [result objectForKey:@"data"];
        for (int i=0;i<friends.count;i++) {

            NSDictionary *friend = [friends objectAtIndex:i];
            //NSLog([friend objectForKey:@"name"]);

        }  
    }
}

答案 1 :(得分:1)

这就是你在“didLoad”中获得FBRequest变量的原因。您可以使用它来检查原始请求。这是一种垃圾解决方案,但至少你可以检查它是什么。

答案 2 :(得分:0)

实际上看起来Hackbook正在进行基于名为“currentAPICall”的int的切换,为每个请求设置一个int,然后在返回时检查它。所以这一切都是在主线程中完成的,我猜。

我也有不同类型的结果对象。我最终查看结果并确定它是来自/我的请求还是来自/ home。我有各种各样的“ifs”看着返回的对象。无论如何都不理想。即。

if([result objectForKey:@"first_name"]){
    // back from getMe()
}

if ([result objectForKey:@"data"]) {
    // more checking here- I have two calls that return a data object
}

更新:这不适用于异步请求,其中大部分都是,所以我使用上面的方法,检查request.url,而不是像魅力一样。