Skip to content

Instantly share code, notes, and snippets.

@mxcl
Created November 18, 2014 17:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mxcl/e83aa653da7fec6f3ce4 to your computer and use it in GitHub Desktop.
Save mxcl/e83aa653da7fec6f3ce4 to your computer and use it in GitHub Desktop.
query.findObjectsInBackgroundWithBlock { (objects: [AnyObject]!, error: NSError!) in
if error == nil {
self.latitudeArray = objects.map{ $0["latitude"]! as Double }
} else {
println(error)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment