-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 に答える