Skip to content

Instantly share code, notes, and snippets.

@rnystrom
Created April 17, 2013 16:52
Show Gist options
  • Save rnystrom/5405925 to your computer and use it in GitHub Desktop.
Save rnystrom/5405925 to your computer and use it in GitHub Desktop.
Ensuring a property is only set once
- (void)setOriginalContainerRect:(CGRect)originalContainerRect {
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
_originalContainerRect = originalContainerRect;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment