Skip to content

Instantly share code, notes, and snippets.

@matzew
Created August 23, 2012 12:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matzew/3436023 to your computer and use it in GitHub Desktop.
Save matzew/3436023 to your computer and use it in GitHub Desktop.
iOS read..
...
// get access to the 'projects' pipe..
...
// query all records, by invoking the read function on the actual pipe/connection:
[projectPipe read:^(id responseObject) {
// get's invoked when the response returns....
// do something with the data.... or just log it to the console.....
NSLog(@"Projects: %@", responseObject);
} failure:^(NSError *error) {
// do some proper error handling, if needed/desired...
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment