【发布时间】:2015-08-20 19:00:01
【问题描述】:
我将所有数据保存在 NSMutableArray 中
我试过这个:
var dataQuery:PFQuery = PFQuery(className: "Posts")
dataQuery.orderByDescending("likes") // but this doesn't make sense at all.
dataQuery.findObjectsInBackgroundWithBlock { (objects, error) -> Void in
我希望顶部的帖子具有最大数量的likes 等等。我怎样才能做到这一点?谢谢你的时间..
【问题讨论】:
标签: ios swift parse-platform