I'm having the same problem I saw some people have with the FBProfilePictureView not showing the photo. I've already seen this question and I've added
[FBProfilePictureView class];
to my first line of the app delegate method didFinishLaunching but that did not solve.
Sometimes it loads all images, sometimes it loads most of them and sometimes only a few images.
I create the FBProfilePictureView programmatically doing:
FBProfilePictureView *friendProfilePic = [[FBProfilePictureView alloc] init];
friendProfilePic.profileID = friendID; //friendID is a NSString I've created before
friendProfilePic.frame = CGRectMake(xPos, yPos, width, height);
Does anyone know what might be happening?
Note: I didn't want to use -ObjC linker flag because it will raise my app size
Note2: I can't comment on questions so I had to make another one.
Thanks