Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法让 PFQueryTableViewController 像 NSStringslocalizedCaseInsensitiveCompare 一样排序?
Héctor Ramos(Parse.com 的解决方案架构师)回答(在电子邮件中):
修改的本地化CaseInsensitiveCompare 是特定于 iOS 的,但是 PFQuery 在 Parse 的后端执行。Parse 不支持这种排序。我建议使用标准排序进行查询,然后使用带有localizedCaseInsensitiveCompare 的NSSortDescriptor 在客户端对结果数组进行排序。
感谢 Hector 的回答,这很有效——我做到了。但是它会破坏分页。