对NSDictionary数组排序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了对NSDictionary数组排序相关的知识,希望对你有一定的参考价值。
Snippet from a question I answered in StackOverflow.
NSSortDescriptor *dateSortDescriptor = [[[NSSortDescriptor alloc] initWithKey:@"issue_id" ascending:YES selector:@selector(compare:)] autorelease];
以上是关于对NSDictionary数组排序的主要内容,如果未能解决你的问题,请参考以下文章
使用 NSDictionary 对 NSArray 进行排序
如何按数值对包含 NSDictionary 的 NSMutableArray 进行排序?