Last active
August 29, 2015 14:03
-
-
Save Kevinwlee/8bb77c96baaf613ec364 to your computer and use it in GitHub Desktop.
Get items by tag and key path
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[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