首先,感谢您的帮助。我正在编写一个用 Swift 开发的 iOs 应用程序,我正在使用Parse.com。在名为liste_joueurs的类中,大约有 15 行。但是,我只想检索前四个结果。
我阅读了文档并找到了query.limit属性。不幸的是,当我在我的集合中运行我的代码时,我的类中的所有行都会出现(query.limit 不起作用)。
有没有人有办法解决吗 ?
override func queryForCollection() -> PFQuery {
let query = PFQuery(className: "liste_joueurs")
query.limit = 4 // Useless
query.orderByAscending("nom")
return query
}
override func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath, object: PFObject!) -> PFCollectionViewCell? {
println(object["nom"]?.count)
let cell = collectionView.dequeueReusableCellWithReuseIdentifier("statsCell", forIndexPath: indexPath) as! StatsViewCell
// CELL'S TREATMENT
return cell
}
PS:当我使用这样的约束时:
query.whereKey("nom", hasPrefix: "ba")
查询“被过滤”,只有以“ba”开头的行出现在我的集合中......