Created
September 21, 2012 14:37
-
-
Save thechrisoshow/3761843 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
@interface BananaBox : NSObject | |
- (id)objectAtIndexedSubscript:(NSUInteger)idx; | |
- (void)setObject:(id)obj atIndexedSubscript:(NSUInteger)idx; | |
@end | |
@implementation AppleCart | |
NSMutableArray *_bananas; | |
-(id) init { | |
self = [self init] | |
if (self} { | |
_bananas = [[NSMutableArray alloc] init]; | |
} | |
return self; | |
} | |
- (id)objectAtIndexedSubscript:(NSUInteger)idx { | |
return _bananas[idx]; | |
} | |
- (void)setObject:(id)obj atIndexedSubscript:(NSUInteger)idx { | |
_bananas[idx] = obj; | |
} | |
@end | |
BananaBox *bananaBox = [[BananaBox alloc] init]; | |
bananaBox[0] = @"Delicious banana"; | |
bananBox[0]; // Returns "Delicious banana" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
instead of @implementation AppleCart should be @implementation BananaBox, right?
+
There is typo in bananBox[0];