I try to integrate Swift
code in my app.My app is written in Objective-C
and I added a Swift
class. I\'ve done everything described he
I have the same error: myProjectModule-Swift.h
file not found", but, in my case, real reason was in wrong deployment target:
"Swift
is unavailable on OS X earlier than 10.9; please set MACOSX_DEPLOYMENT_TARGET
to 10.9 or later (currently it is '10.7')"
so, when I've changed deployment target to 10.9 - project had been compiled successfully.