1

因此,我有一个在 .m 中导入的类别:

#import "UIView+Additions.h"

如果我忘记添加UIView+Additions.m到我的目标,直到运行时我才会知道运行时找不到我的选择器。有没有办法在编译时(或者可能是链接时)找出我忘记包含类别的实现?

4

1 回答 1

0

这个宏有效!

#ifndef HJBObjCCategory_h
#define HJBObjCCategory_h

#define HJBObjCCategoryInterface( c , n ) \
\
extern int c##n##Canary; \
\
__attribute__((constructor)) static void c##n##CanaryCage() { \
    c##n##Canary = 0; \
} \
\
@interface c (n)

#define HJBObjCCategoryImplementation( c , n ) \
\
int c##n##Canary = 0; \
\
@implementation c ( n )

#endif

像这样使用它:

UIView+Additions.h

HJBObjCCategoryInterface(UIView, Additions)

- (void)hjb_foo;

@end

UIView+Additions.m

HJBObjCCategoryImplementation(UIView, Additions)

- (void)hjb_foo {
  NSLog(@"foo!");
}

@end
于 2013-10-18T19:32:28.217 回答