Skip to content

Instantly share code, notes, and snippets.

@jtubert
Last active December 24, 2015 04:19
Show Gist options
  • Save jtubert/6743534 to your computer and use it in GitHub Desktop.
Save jtubert/6743534 to your computer and use it in GitHub Desktop.
Sketchio presentation - Get sketches
PFQuery *queryPhoto = [PFQuery queryWithClassName:@"Photo"];
[queryPhoto whereKey:@”user” equalTo:[PFUser currentUser]];
[queryPhoto orderByDescending:@"createdAt"];
[queryPhoto findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
//handle sketches
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment