Skip to content

Instantly share code, notes, and snippets.

@Kevinwlee
Last active August 29, 2015 14:03
Show Gist options
  • Save Kevinwlee/8bb77c96baaf613ec364 to your computer and use it in GitHub Desktop.
Save Kevinwlee/8bb77c96baaf613ec364 to your computer and use it in GitHub Desktop.
Get items by tag and key path
[[CCHVault sharedInstance] getItemsWithTags:@[@"sample-tag"] keyPath:@"employee.first_name" value:@"Gaurav" 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