Xcode中能告诉我,如果我忘了,包括在我的目标类别实施?(Can Xcode tell me if

2019-10-18 06:35发布

我有我的.M正是如此导入类别:

#import "UIView+Additions.h"

如果我忘了添加UIView+Additions.m我的目标,我不会知道,直到运行时,运行时无法找到我的选择。 有没有办法在编译时发现(或者可能链接时),我忘了,包括一个类别的implemtation?

Answer 1:

这个宏的作品!

#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


文章来源: Can Xcode tell me if I forget to include a category implementation in my target?