Skip to content

Instantly share code, notes, and snippets.

@JanC
Created August 12, 2015 13:27
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 JanC/ae14d90ded8aa2f3e2a6 to your computer and use it in GitHub Desktop.
Save JanC/ae14d90ded8aa2f3e2a6 to your computer and use it in GitHub Desktop.
NSOperation *operation = [[NSOperation alloc] init];
operation.completionBlock = ^{
if (operation.isCancelled) {
// do something
}
};
@JanC
Copy link
Author

JanC commented Aug 12, 2015

What can you tell about the following code snippet?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment