I\'m successfully calling my Swift classes from Objective C (for target \'MyApp\') via the import statement:
#import \"MyApp-Swift.h\"
I\'v
Well, the only way I can fix is to...
#ifdef IS_LITE #import "MyApp_Lite-Swift.h" #else #import "MyApp-Swift.h" #endif
Note that if there's any 'illegal' chars in my Product Module Name, they need to be replaced with underscores.
Hope that helps!