如何使用Parse获取类中特定键的所有值?

时间:2015-01-01 02:57:07

标签: ios xcode swift parse-platform key

当我使用Parse框架指定类时,如何获取特定键的所有值。我尝试过以下代码,但它不是理想的解决方案,因为出于某种奇怪的原因,它只会在每次尝试时检索对象。如何使用Swift和Parse框架实现这一目标。

currentScreen是包含要查询的类名的变量。

var messageDisplay = PFQuery(className:currentScreen)
messageDisplay.selectKeys(["userPost"])
messageDisplay.findObjectsInBackgroundWithBlock {
    (objects: [AnyObject]!, error: NSError!) -> Void in
    if error == nil {
        println("Type message \(groupConversation)")
        for object in objects {
            var textObject = object["userPost"] as String
            groupConversation.append(textObject)

        }
    } else {
        // Log details of the failure
    }
}

0 个答案:

没有答案