Facebookのチュートリアルのように、次の方法があります。
ただし、プロフィール写真は表示されません。
userNameLabel で user.name を確認できます。ログを見ると、self.userProfilePictureView.profileID が適切に設定されています。
- (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);
}];
}