in one header file I have something like:
typedef void (^MyBlock)(void);
I need to use the same exact link in another header file.
Of course, I can #import one header file into another or include a typedef in a global precompiled header, but is there a way to forward a link to a typedef block instead?
objective-c objective-c-blocks
Brad cupit
source share