The best way to find this problem is in the settings of the general Xcode project. You can find the following setting:
Objective-C Name of the generated interface header *
If you set this value to a common header name, such as "MyProject-Swift.h", it will be applied to each of your goals, and you can safely use the import declaration in any of your Objective-C files. This allows you to continue to use unique product module names for each purpose, if necessary.
I tested this in Xcode Version 6.4 (6E35b).
* Note. This will be displayed according to your Swift compiler settings, which are only visible if the Swift source files are added to your project. Also, if the target does not have a Swift source associated with it, the Swift compiler options will not be displayed for these target build settings.
Good luck
Mike Fay Jul 10 '15 at 19:15 2015-07-10 19:15
source share