iOS 6統合FacebookでFacebookアカウントの情報を取得したいのですが、この方法で取得すると、ユーザー名のみを取得できます。
ACAccountType *accountTypeF = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierFacebook];
[accountStore requestAccessToAccountsWithType:accountType withCompletionHandler:^(BOOL granted, NSError *error) {
if(granted) {
NSArray *accountsArray = [accountStore accountsWithAccountType:accountTypeF];
ACAccount *facebookAccount = [accountsArray objectAtIndex:0];
if (facebookAccount.username) {
}
}
}];
アカウントの名前と名前、およびユーザーの写真を取得する方法を知りたいのですが...誰でも手伝ってくれますか?