Skip to content

Instantly share code, notes, and snippets.

@mxcl
Created November 18, 2014 17:23
Show Gist options
  • Select an option

  • Save mxcl/e83aa653da7fec6f3ce4 to your computer and use it in GitHub Desktop.

Select an option

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