我遇到排序问题...我需要对包含NSArray
的{{1}}进行排序。作为订单键,我必须使用NSDictionaries
中的元素。
我正在阅读有关排序NSDictionary
的一些内容,但我不清楚。
你可以尝试帮助我吗?
答案 0 :(得分:1)
使用NSSortDescriptor
和密钥路径。假设字典的键是key
:
NSSortDescriptor *sd = [NSSortDescriptor sortDescriptorWithKey:@"key" ascending:YES];
NSArray *sorted = [array sortedArrayUsingDescriptors:[NSArray arrayWithObject:sd]];