Skip to content

Commit a43653c

Browse files
committed
* list of overridden methods
1 parent b541844 commit a43653c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

JSONModel/JSONModel/JSONModelArray.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ - (void)forwardInvocation:(NSInvocation *)anInvocation
7070
-(id)forwardingTargetForSelector:(SEL)selector
7171
{
7272
static NSArray* overridenMethods = nil;
73-
if (!overridenMethods) overridenMethods = @[@"initWithArray:modelClass:",@"objectAtIndex:",@"count",@"modelWithIndexValue:",@"description",@"mutableCopy",@"firstObject",@"lastObject"];
73+
if (!overridenMethods) overridenMethods = @[@"initWithArray:modelClass:",@"objectAtIndex:",@"objectAtIndexedSubscript:", @"count",@"modelWithIndexValue:",@"description",@"mutableCopy",@"firstObject",@"lastObject"];
7474
if ([overridenMethods containsObject:NSStringFromSelector(selector)]) {
7575
return self;
7676
}

0 commit comments

Comments
 (0)