Created
September 21, 2012 14:28
-
-
Save thechrisoshow/3761760 to your computer and use it in GitHub Desktop.
Special methods for adding subscripting
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
// To add array style subscripting: | |
- (void)setObject:(id)obj atIndexedSubscript:(NSUInteger)idx; // setter | |
- (id)objectAtIndexedSubscript:(NSUInteger)idx; // getter | |
// To add dictionary style subscripting | |
- (void)setObject:(id)obj forKeyedSubscript:(id <NSCopying>)key; // setter | |
- (id)objectForKeyedSubscript:(id)key; // getter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment