1
我使用FBFriendPickerViewController顯示我的所有朋友,然後當我選擇一個(multipleselection禁用)時,我想獲取他的姓名和用戶名。檢索朋友用戶名
有人可以解釋爲什麼用戶名稱返回正確,用戶名返回空?
- (void)facebookViewControllerDoneWasPressed:(id)sender {
for (id<FBGraphUser> friend in self.friendPickerController.selection) {
NSLog(@"%@", friend.name);
NSLog(@"%@", friend.username);
}
}
哪個是檢索我的朋友用戶名的最好方法?
謝謝!
我想你誤解了這個問題,我不想搜索。我想檢索在選取器上選擇的朋友的用戶名。 –