Skip to content

Instantly share code, notes, and snippets.

@juanfiguera
Created February 24, 2013 13:45
Show Gist options
  • Save juanfiguera/5023907 to your computer and use it in GitHub Desktop.
Save juanfiguera/5023907 to your computer and use it in GitHub Desktop.
Sample cloudcode
[PFCloud callFunctionInBackground:@"hello" withParameters:@{} block:^(NSString *result, NSError *error) {
if (!error) {
// result is @"Hello world!"
}
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment