Skip to content

Instantly share code, notes, and snippets.

@axelrivera
Forked from gcollazo/gist:f730574b5a7e3897c8f8
Last active August 29, 2015 14:09
Show Gist options
  • Save axelrivera/84f9833517b77968356c to your computer and use it in GitHub Desktop.
Save axelrivera/84f9833517b77968356c to your computer and use it in GitHub Desktop.
var query: PFQuery = PFQuery(className: "userPhoto")
query.findObjectsInBackgroundWithBlock { [weak self] (objects, error) -> Void in
if let weakSelf = self {
println("Got \(objects.count) entries")
weakSelf.feedData = objects
weakSelf.tableView.reloadData()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment