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/633d9fb1281ef565b60c to your computer and use it in GitHub Desktop.
Save JanC/633d9fb1281ef565b60c to your computer and use it in GitHub Desktop.
NSOperation *operation = [[NSOperation alloc] init];
__weak typeof(operation) weakOperation = operation;
operation.completionBlock = ^{
__strong typeof(operation) strongOperation = weakOperation;
if (strongOperation.isCancelled) {
// do something
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment