mirror of
https://github.com/darlinghq/class-dump.git
synced 2025-01-30 08:42:55 +00:00
21 lines
555 B
Objective-C
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
|