Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to make a request to get the user's picture. This worked fine before I updated the Facebook Graph API. The following is my request DidLoad, and for some reason, the isKindOfClass:[NSData class] if block isn't getting called and therefore the segue isn't executing. Any idea why? Has Facebook changed the way it returns images?

-(void)request:(FBRequest *)request didLoad:(id)result
{
    NSLog(@"FACEBOOK LOADED!");
    NSLog(@"Inside didLoad");
    NSLog(@"Result: %@", result);
    if ([result isKindOfClass:[NSArray class]]) {
        result = [result objectAtIndex:0];
    }

    if ([result isKindOfClass:[NSDictionary class]]){
        NSLog(@"Name: %@", [result objectForKey:@"name"]);
        facebookUsername = [result objectForKey:@"name"];  
        NSLog(@"-- Inside NSDictionary Class");
    }
    if ([result isKindOfClass:[NSData class]])
    {
        UIImage* profilePicture = [[UIImage alloc] initWithData: result];
        facebookPhoto = profilePicture;
        NSLog(@"PHOTO: %@",facebookPhoto);
        NSLog(@"-- Inside NSData Class");
    }

    if (facebookPhoto != nil && facebookUsername != nil) {
        [self performSegueWithIdentifier:@"loginSegue" sender:nil];
        //END HUD HERE
        [HUD hide:1];
    }
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.