-4

如何获取 Facebook 个人资料图片并将其设置为按钮图片。我有一个按钮,它将显示 facebook 图片作为其图像。帮帮我

4

1 回答 1

2

这是简单的东西:

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];
于 2013-07-06T06:27:33.930 回答