这是简单的东西:
NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"https://graph.facebook.com/1457691266/picture?type=square"]];
// Exchange 1457691266 with the ID of the user
yourProfilePicBtn.imageView.image = [UIImage imageWithData:imageData];