我已成功将 iOs Facebook API 集成到我的应用中。 现在,我想得到用户的 friend 。 为了得到它,我使用:
[facebook requestWithGraphPath"me/friends" andDelegate:self];
我实现了一个委托(delegate)方法来接收它:
- (void)requestFBRequest *)request didLoadid)result {
uids = [[NSMutableArray alloc]init];
if([result isKindOfClass:[NSDictionary class]])
{
NSLog(@"dictionary %@",result);
result=[result objectForKey"data"];
if ([result isKindOfClass:[NSArray class]])
for(int i=0;i<[result count];i++){
NSDictionary *result2=[result objectAtIndex:i];
/*NSLog(@"resultq:%@",result2);
NSString *result1=[result2 objectForKey"id"];
NSLog(@"uid:%@",result1);*/
Friend *f = [[Friend alloc] initWithDictionary:result2];
[uids addObject:f];
[f release];
}
NSLog(@"uids %@",uids);
}
}
所以我为用户的每个 friend 创建对象 Friend。 我正确地得到了 friend ,但顺序是随机的。
问题是,有没有办法按字母顺序接收用户的好友?
与其按字母顺序接收它们,不如在下载完所有好友后重新排列好友数组。这是比较数组并按字母顺序排序的最佳方式。
sortedArray = [anArray sortedArrayUsingSelectorselector(localizedCaseInsensitiveCompare];
但是如果你想通过Friends类的属性/变量即Name来比较数组,你可以这样做:
sortedArray = [anArray sortUsingSelectorselector(name)];
关于iOS 应用程序。按字母顺序获取 Facebook 好友,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7861980/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |