NSDictionary In NSArray NSSortDescriptor 排序

来源:互联网 发布:网络蜘蛛并行策略 编辑:程序博客网 时间:2024/05/16 10:42
在这里说明一点东西:NSSortDescriptor是一个专门用来排序的。它可以设定关键字(字典中的key),根据对应key的value来进行一个排序。其中,如果是对array数组进行排序,那么object为字典,并且key对应的value 一定得是string,如果对应的是对象obj,那么系统会报错。一般用到的地方有NSArray(object 为NSDictionary),core data过滤筛选。

[csharp] view plaincopy
  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];  
原创粉丝点击