Created
August 3, 2012 16:33
-
-
Save pita5/3249286 to your computer and use it in GitHub Desktop.
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
#if __IPHONE_OS_VERSION_MAX_ALLOWED < 60000 | |
@interface NSObject (PLGSubscripting) | |
- (id)objectAtIndexedSubscript:(NSUInteger)idx; | |
- (void)setObject:(id)obj atIndexedSubscript:(NSUInteger)idx; | |
- (void)setObject:(id)obj forKeyedSubscript:(id <NSCopying>)key; | |
- (id)objectForKeyedSubscript:(id)key; | |
@end | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment