UITableView 的 JSON NSDictionary 排序
我正在使用 TouchJSON 检索我的应用程序的信息并将其放入字典中。我希望能够按难度和评级等值对其进行排序。我该怎么办呢?我已经包含了我的 .m 文件。 谢谢,enbr http://pastie.org/1091334
I am using TouchJSON to retrieve info for my app and put it in a dictionary. I would like to be able to sort it by values like difficulty and rating. How would I go about this? I have included my .m file.
Thanks, enbr
http://pastie.org/1091334
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能可以使用
NSSortDescriptor
对具有指定键的字典数组进行排序。因此,例如,以下可以按每个字典中的键“评级”对数组进行排序:You can probably use
NSSortDescriptor
to sort the array of dictionaries with specified keys. So, for example, the following can sort the array by the key "ratings" in each dictionary: