// 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