Skip to content

Instantly share code, notes, and snippets.

@Kevinwlee
Last active August 29, 2015 14:03
Show Gist options
  • Save Kevinwlee/9c68a1552b57202c72cf to your computer and use it in GitHub Desktop.
Save Kevinwlee/9c68a1552b57202c72cf to your computer and use it in GitHub Desktop.
Retrieving items with tags
[[CCHVault sharedInstance] getItemWithTags:@[@"demo"] completionHandler:^(NSArray *responses, NSError *error) {
if (error) {
//handle errors
} else {
//work with the responses
}
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment