NSMutableDictionary 和 NSArray
我有这样的问题。 我有 NSMutableDictionary
Object 10 Key 1
Object 20 Key 2
Object 30 Key 3
Object 40 Key 4
Object 50 Key 5
然后我有代码
NSArray*currentArray=[currentMutableDictionary allValues];
当我输出当前数组时我有 值
20
50
30
10
40
如何以正确的顺序将对象从字典添加到数组?
感谢您的回答。
I have a such problem.
I have NSMutableDictionary
Object 10 Key 1
Object 20 Key 2
Object 30 Key 3
Object 40 Key 4
Object 50 Key 5
Then I have code
NSArray*currentArray=[currentMutableDictionary allValues];
When I output current Array I have
Value
20
50
30
10
40
How I can add obects from Dictionary to Array in the correct order ?
Thanks for your answers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个:
假设你的字典中有 NSNumber 对象,这应该正确地对数组进行排序。
Try this out:
That should sort the array properly, assuming you have NSNumber objects in your dictionary.
您可以创建一个 NSMutableArray 并使用 addObjectAtIndex 方法添加迭代它的对象
you can make an NSMutableArray instead and add the objects iterating it an using addObjectAtIndex method
您可以使用
keysSortedByValueUsingComparator
按排序顺序提取键,然后创建一个可变数组来放入值,并使用objectsForKeys:notFoundMarker:
提取它们。You can extract the keys in sorted order using
keysSortedByValueUsingComparator
, then make a mutable array to put the values in, and extract them usingobjectsForKeys:notFoundMarker:
.