Skip to content

Instantly share code, notes, and snippets.

@thechrisoshow
Created September 5, 2012 15:18
Show Gist options
  • Save thechrisoshow/3638220 to your computer and use it in GitHub Desktop.
Save thechrisoshow/3638220 to your computer and use it in GitHub Desktop.
If you want to add the new array/dictionary accessors to IOS5
// 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