如何对 NSMutableDictionary 的 NSMutableArray 进行排序?
我有 NSMutableDictionary(NSString 对象) 的 NSMutableArray。 NSString 对象之一实际上是一个日期,我需要根据该日期对 NSMutableArray 进行排序,并且我不希望它将日期作为字符串进行排序。我怎样才能做到呢?
I have NSMutableArray of NSMutableDictionary(NSString objects). One of NSString object is actually a date, and i need to sort NSMutableArray based on that date and I don't want it to sort dates as strings. How can i make it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我理解正确,您的数组包含包含字符串的字典,并且您想要对这些字符串进行排序...作为日期。也许是这样的:
If I understand correctly, your array contains dictionaries that contain strings and you want to sort on those strings... as dates. Something like this perhaps:
您将需要使用 sortedArrayUsingFunction:context: 方法。例如:
注意:这尚未经过测试。
You will need to use the sortedArrayUsingFunction:context: method. For example:
Note: This is not tested.