Created
December 3, 2012 16:18
-
-
Save maksa/4196023 to your computer and use it in GitHub Desktop.
namespaced Objective-C object constants
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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