NSDictionary In NSArray NSSortDescriptor 排序

在这里说明一点东西:
NSSortDescriptor是一个专门用来排序的。它可以设定关键字(字典中的key),根据对应key的value来进行一个排序。
其中,如果是对array数组进行排序,那么object为字典,并且key对应的value 一定得是string,如果对应的是对象obj,那么系统会报错。
一般用到的地方有NSArray(object 为NSDictionary),core data过滤筛选。

[csharp]  view plain copy
  1. 根据字典中关键字,对字典进行排序    
  2. //First create the array of dictionaries    
  3. NSString *LAST = @"lastName";    
  4. NSString *FIRST = @"firstName";    
  5.      
  6. NSMutableArray *array = [NSMutableArray array];    
  7. NSArray *sortedArray;    
  8.      
  9. NSDictionary *dict;    
  10. dict = [NSDictionary dictionaryWithObjectsAndKeys:    
  11.                      @"Jo", FIRST, @"Smith", LAST, nil];    
  12. [array addObject:dict];    
  13.      
  14. dict = [NSDictionary dictionaryWithObjectsAndKeys:    
  15.                      @"Joe", FIRST, @"Smith", LAST, nil];    
  16. [array addObject:dict];    
  17.      
  18. dict = [NSDictionary dictionaryWithObjectsAndKeys:    
  19.                      @"Joe", FIRST, @"Smythe", LAST, nil];    
  20. [array addObject:dict];    
  21.      
  22. dict = [NSDictionary dictionaryWithObjectsAndKeys:    
  23.                      @"Joanne", FIRST, @"Smith", LAST, nil];    
  24. [array addObject:dict];    
  25.      
  26. dict = [NSDictionary dictionaryWithObjectsAndKeys:    
  27.                      @"Robert", FIRST, @"Jones", LAST, nil];    
  28. [array addObject:dict];    
  29.      
  30. //Next we sort the contents of the array by last name then first name    
  31.      
  32. // The results are likely to be shown to a user    
  33. // Note the use of the localizedCaseInsensitiveCompare: selector    
  34. NSSortDescriptor *lastDescriptor =    
  35.     [[[NSSortDescriptor alloc] initWithKey:LAST    
  36.                                ascending:YES    
  37.                                selector:@selector(localizedCaseInsensitiveCompare:)] autorelease];    
  38. NSSortDescriptor *firstDescriptor =    
  39.     [[[NSSortDescriptor alloc] initWithKey:FIRST    
  40.                                ascending:YES    
  41.                                selector:@selector(localizedCaseInsensitiveCompare:)] autorelease];    
  42.      
  43. NSArray *descriptors = [NSArray arrayWithObjects:lastDescriptor, firstDescriptor, nil];    
  44. sortedArray = [array sortedArrayUsingDescriptors:descriptors];  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值