I have a category that I import in a .m thusly:
#import "UIView+Additions.h"
If I forget to add UIView+Additions.m
to my target, I won't know until runtime when the runtime can't find my selector. Is there a way to find out at compile time (or probably link time) that I forgot to include a category's implemtation?
This macro works!
Use it like this:
UIView+Additions.h
UIView+Additions.m