Skip to content

Instantly share code, notes, and snippets.

@jbradforddillon
Created April 18, 2013 15:52
Show Gist options
  • Save jbradforddillon/5413839 to your computer and use it in GitHub Desktop.
Save jbradforddillon/5413839 to your computer and use it in GitHub Desktop.
// Classic delegation
- (void)myOperationDidSucceed:(id data) {
[myView hideLoadingIndicator];
// Do something with data
}
- (void)myOperationDidFail:(NSError *)error {
[myView hideLoadingIndicator];
// Do something with the error
}
- (void)myOperationDidReachAnotherOutcome:(NSDictionary *info) {
[myView hideLoadingIndicator];
// Do something with info
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment