Created
September 5, 2012 15:18
-
-
Save thechrisoshow/3638220 to your computer and use it in GitHub Desktop.
If you want to add the new array/dictionary accessors to IOS5
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
// Put this in your ..-Prefix.pch file | |
// Add support for subscripting to the iOS 5 SDK. | |
#if __IPHONE_OS_VERSION_MAX_ALLOWED < 60000 | |
@interface NSObject (SubscriptingSupport) | |
- (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