i am saving all the data in an NSMutableArray
i tried this :
var dataQuery:PFQuery = PFQuery(className: "Posts")
dataQuery.orderByDescending("likes") // but this doesn't make sense at all.
dataQuery.findObjectsInBackgroundWithBlock { (objects, error) -> Void in
i want the post at the top having maximum number of likes and so on. How can i do that? Thanks for your time..
