我试图在NSArray上调试一些东西,但我甚至找不到导致问题的数组指针是什么,也不知道为什么会发生这种情况。我在objectAtIndex上得到一个错误:(越界(,它似乎来自某个内部NSView方法。。。不管怎样,我试着用我自己的方法在objectAtIndex:中嗖嗖作响,但它不起作用。奇怪的是,我可以用另一个类和方法做同样的事情,而且效果很好。以下是我要做的事情:
Class arrayClass = [NSArray class];
Method originalMethod = class_getClassMethod(arrayClass, @selector(objectAtIndex:));
Method categoryMethod = class_getClassMethod(arrayClass, @selector(objectAtIndexAlt:));
method_exchangeImplementations(originalMethod, categoryMethod);
但它不起作用。有人知道为什么吗?
更新:谢谢Dave,这可能就是问题所在。我还有getClassMethod而不是实例。不管怎样,我最终做的是:
#import <Cocoa/Cocoa.h>
#import <objc/runtime.h>
@interface NSArray (Swizzle)
- (void)objectAtIndexAlt:(NSUInteger)index;
@end
@implementation NSArray (Swizzle)
- (void)objectAtIndexAlt:(NSUInteger)index
{
if ([self count] <= index)
NSLog(@"%s self = %@, pointer = %p, index = %lu", __FUNCTION__, self, self, (unsigned long)index);
return [self objectAtIndexAlt:index];
}
@end
int main(int argc, char *argv[])
{
Class arrayClass = NSClassFromString(@"__NSArrayM");
Method originalMethod = class_getInstanceMethod(arrayClass, @selector(objectAtIndex:));
Method categoryMethod = class_getInstanceMethod([NSArray class], @selector(objectAtIndexAlt:));
method_exchangeImplementations(originalMethod, categoryMethod);
return NSApplicationMain(argc, (const char **) argv);
}
创建数组时,不会得到NSArray
的实例。你通常会得到一个NSCFArray
,尽管还有其他私有类,比如__NSArrayM
等等
这是因为NSArray
是一个类簇。