swift解析查询不按升序返回对象

时间:2016-03-31 14:02:47

标签: swift parse-platform tableview

我的查询旨在获取由特定数量的用户创建的对象。以下是我的代码:

var dates = [NSDate]()
var messages = [String]()

        let getUsersQuery = PFQuery(className: "followings")

        getUsersQuery.whereKey("follower", equalTo: PFUser.currentUser()!.objectId!)

        getFollowedUsersQuery.findObjectsInBackgroundWithBlock { (objects, error) -> Void in

            if let objects = objects {

                for object in objects {

                    let followedUser = object["followedUser"] as! String

                    let getPostsQuery = PFQuery(className: "posts")

                    getPostsQuery.whereKey("userId", equalTo: followedUser)
                    getPostsQuery.orderByDescending("updatedAt")

                    getPostsQuery.findObjectsInBackgroundWithBlock({ (objects, error) -> Void in

                        if let objects = objects {

                            for post in objects {

                                self.dates.append(post.createdAt as NSDate!)
                               self.messages.append(post["message"] as! String)
                        }

                        print(self.dates)

                        self.myTableView.reloadData()
                    })
                }
            }
        }
    })

以下是我在日志中打印日期时出现的内容:

enter image description here

但是,我的tableview中的内容不是按升序排列的。实际上,最近创建的帖子位于tableview的底部。我注意到的一件事是特定用户的帖子似乎一起显示。因此,无论其他用户是否创建了最新帖子,所有用户的帖子都会出现在桌面视图的顶部。什么出了什么问题?谢谢!

1 个答案:

答案 0 :(得分:0)

您需要的是嵌套查询。你想要获得的阵列是一个帖子。所以你的查询应该在post表上。 (另外,您的表格应该被称为post而不是posts。表格名称应该始终是单数。每个帖子称为post而不是posts

let postsQuery = PFQuery(className: "post")
postsQuery.orderByDescending("updatedAt")

let usersQuery = PFQuery(className: "following")
usersQuery.whereKey("follower", equalTo:PFUser.currentUser()!.objectId!)

// this might need to change depending on what the followed user is called in the `followings` table.
postsQuery.whereKey("userId", matchesKey:"followed", inQuery:usersQuery)

getPostsQuery.findObjectsInBackgroundWithBlock({ (objects, error) -> Void in
    if let objects = objects {

    for post in objects {
        self.dates.append(post.createdAt as NSDate!)
        self.messages.append(post["message"] as! String)
    }

    print(self.dates)

    self.myTableView.reloadData()
})

此外,您将日期和消息保存在单独的阵列中。创建一个结构或具有日期和字符串并具有单个Post个对象数组的东西。