class-dump/NSObject-CDExtensions.m
2006-10-14 03:17:54 +00:00

21 lines
555 B
Objective-C

// This file is part of class-dump, a utility for examining the Objective-C segment of Mach-O files.
// Copyright (C) 1997-1998, 2000-2001, 2004-2006 Steve Nygard
#import "NSObject-CDExtensions.h"
#import <Foundation/Foundation.h>
@implementation NSObject (CDExtensions)
- (void)performSelector:(SEL)aSelector withObjectsFromArray:(NSArray *)anArray;
{
int count, index;
count = [anArray count];
for (index = 0; index < count; index++) {
[self performSelector:aSelector withObject:[anArray objectAtIndex:index]];
}
}
@end