I have strings that are set up in my class on parse, how do I pull those down in to an array.
I don't have any of my own code at the moment. I have found stuff that is in php or php but I cannot find anything in swift.
var query = PFQuery(className:"GameScore")
query.getObjectInBackgroundWithId("xWMyZEGZ") {
(gameScore: PFObject!, error: NSError!) -> Void in
if error == nil && gameScore != nil {
println(gameScore)
} else {
println(error)
}
}
I don't think its that because that is just retrieving an object.
In short is there a way to take Class > String and get all of the data in the column put into an array in my .swift?