As described here, it is possible to use Swift code from objective-c in the same target using
#import <ProductName/ProductModuleName-Swift.h>
Importing from an external framework can be done with
@import FrameworkName;
However, this only works when "Enable Modules" is set. Assuming "Enable Modules" can not be set on the target that wants to import the Swift code, my question is:
Is it possible to make the ProductModuleName-Swift.h header public, so that it can be accessed from other targets?