I have the following method as in Facebook's tutorial.
However, the profile photo does not show up.
I can see the user.name in the userNameLabel, and looking at the log the self.userProfilePictureView.profileIDis set properly.
- (void)populateUserInfo{
AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
[appDelegate requestUserData:^(id sender, id<FBGraphUser> user) {
self.userNameLabel.text = user.name;
self.userProfilePictureView.profileID = [user objectForKey:@"id"];
NSLog(@"%@", self.userProfilePictureView.profileID);
}];
}