我想使用Graph API。我想将它们加载到UITableView中。 加载整个用户的详细信息也很慢...... 有没有办法可以让它更快?
还有一件事: 有没有办法在用户登录后在Facebook iOS SDK提供的登录窗口中加载Facebook页面?我想要用用户的登录凭证加载某个粉丝页面......
答案 0 :(得分:3)
我在Facebook Class中添加了以下方法来获取用户的好友列表:
-(BOOL) getFriendsList : (id<FBRequestDelegate>) delegate
{
if (! [self isSessionValid])
{
return NO;
}
else
{
[self requestWithGraphPath:@"me/friends" andDelegate:delegate];
return YES;
}
}
为了处理来自服务器的响应,我编写了以下方法:
- (void)request:(FBRequest *)request didLoad:(id)result
{
NSDictionary * data = result;
NSArray *separatedName;
Contact * current;
_contactsFromFacebook = [[NSMutableDictionary alloc] init];
for (NSDictionary * contact in data)
{
separatedName = [[contact objectForKey:@"name"] componentsSeparatedByString:@" "];
current = [[Contact alloc]
initWithFirstName:[separatedName objectAtIndex:0]
andLastName:[separatedName objectAtIndex:1]];
if(current.alphabeticKey)
{
[self.contactsFromFacebook addObject:current toExsistingArrayWithKey:current.alphabeticKey];
[self addFriendToImportList:current];
}
[current release];
}
self.allKeysSorted = [NSMutableArray arrayWithArray:[self.contactsFromFacebook allKeys]];
[self.tableView reloadData];
}
注意:
UITableView
[self.tableView reloadData]
来(重新)加载我刚从Facebook获得的所有联系人。如果您之前尝试调用它,就像在viewDidLoad
中一样,那么您最终会得到一个空表,因为还没有联系人。答案 1 :(得分:1)
使用Facebook SDK 3.0,您可以通过以下方式获取朋友列表:
FBRequest* friendsRequest = [FBRequest requestForMyFriends];
[friendsRequest startWithCompletionHandler: ^(FBRequestConnection *connection,
NSDictionary* result,
NSError *error) {
NSArray* friends = [result objectForKey:@"data"];
NSLog(@"Found: %i friends", friends.count);
for (NSDictionary<FBGraphUser>* friend in friends) {
NSLog(@"I have a friend named %@ with id %@", friend.name, friend.id);
}
}];
考虑使用KNMultiItemSelector为您管理选择列表。