7

我尝试使用方法 swizzling为NSObject泛型捕获“ alloc ” 。

NSObject *obj = [[NSObject alloc] init];
UIView *view  = [[UIView alloc] initWithFrame:CGRectZero];
NSString *str = [[NSString alloc] init];
[...]

这是实现(类别 .m),适用于所有其他方法但 NSObjet 上的 alloc 除外

可能是什么原因?

#import "NSObject+Custom.h"
#import <objc/runtime.h>

@implementation NSObject (Custom)

+ (void)load
{
  Method original = class_getInstanceMethod(self, @selector(alloc));
  Method swizzle  = class_getInstanceMethod(self, @selector(allocCustom));
  method_exchangeImplementations(original, swizzle);
}

- (id)allocCustom
{
  NSLog(@"%s", __FUNCTION__); // no way
  return [self allocCustom];
}

@end

谢谢。

4

1 回答 1

9

+alloc是类方法,而不是实例方法:

  • 使用class_getClassMethod代替class_getInstanceMethod
  • +allocCustom代替-allocCustom
于 2013-05-29T10:48:40.940 回答