Skip to content

Instantly share code, notes, and snippets.

@alex-ethier
alex-ethier / createCallback.m
Created October 11, 2011 04:56
SimpleGeo.framework - IOS
SGCallback *callback = [SGCallback callbackWithSuccessBlock:
^(id response)
{
NSLog(@"Handle Success");
} failureBlock:^(NSError *error)
{
NSLog(@"Handle Failure");
}];