我想找回在iOS 6中集成Facebook的Facebook帳戶的信息,現在我做到這樣,我只能檢索用戶名:檢索的Facebook帳戶信息在iOS 6中
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) {
}
}
}];
我想知道我怎麼可以檢索帳戶的名稱和姓氏和用戶的照片...任何人都可以幫助我?
你必須勾選下面至少一個答案! –