我有我的.M正是如此导入类别:
#import "UIView+Additions.h"
如果我忘了添加UIView+Additions.m
我的目标,我不会知道,直到运行时,运行时无法找到我的选择。 有没有办法在编译时发现(或者可能链接时),我忘了,包括一个类别的implemtation?
我有我的.M正是如此导入类别:
#import "UIView+Additions.h"
如果我忘了添加UIView+Additions.m
我的目标,我不会知道,直到运行时,运行时无法找到我的选择。 有没有办法在编译时发现(或者可能链接时),我忘了,包括一个类别的implemtation?
这个宏的作品!
#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