Skip to content

Instantly share code, notes, and snippets.

@maksa
Created December 3, 2012 16:18
Show Gist options
  • Save maksa/4196023 to your computer and use it in GitHub Desktop.
Save maksa/4196023 to your computer and use it in GitHub Desktop.
namespaced Objective-C object constants
struct CONSTS {
__unsafe_unretained NSString* ONE;
__unsafe_unretained NSString* TWO;
__unsafe_unretained NSString* THREE;
};
const struct CONSTS NEPHEWS = {
.ONE = @"Raya",
.TWO = @"Gaya",
.THREE = @"Vlaya"
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment