Skip to content

Instantly share code, notes, and snippets.

@dmcrodrigues
Created November 17, 2014 09:18
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 dmcrodrigues/b70f7a4008e957ff244a to your computer and use it in GitHub Desktop.
Save dmcrodrigues/b70f7a4008e957ff244a to your computer and use it in GitHub Desktop.
Nil Coalescing Operator snippet
- (NSProgress *)overallProgress {
return objc_getAssociatedObject(self, @selector(overallProgress))
?: (NSProgress *){self.overallProgress = [NSProgress progressWithTotalUnitCount:0]};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment