从解析查询加载UITableView

时间:2015-03-02 04:24:08

标签: ios swift parse-platform

此代码部分时间有效,有时则返回空数组。我不知道为什么。我在viewWillAppear中调用它。

func refreshFriendListFromLocalDatastore() {
    println("refreshing from local datastore")
    var friendRelations:PFRelation = currentUser.relationForKey("friendRelations") as PFRelation
    var query:PFQuery = friendRelations.query() as PFQuery
    query.orderByAscending("username")
    query.fromLocalDatastore()
    query.findObjectsInBackgroundWithBlock { (NSArray friends, NSError error) -> Void in
        if error == nil {
            self.friends = friends
            println("\(self.friends)")
            tableView.reloadData()
        } else {
            println("could not retrieve friend list at this time")
        }
    }
}

1 个答案:

答案 0 :(得分:0)

currentUser与使用pin固定到本地数据存储的用户没有朋友关系。