Skip to content

Instantly share code, notes, and snippets.

@thechrisoshow
Created September 21, 2012 14:28
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 thechrisoshow/3761760 to your computer and use it in GitHub Desktop.
Save thechrisoshow/3761760 to your computer and use it in GitHub Desktop.
Special methods for adding subscripting
// 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