I have a large Xcode project which is 99% Objective-C and C code. I've just implemented the project's first Swift class.
When I pause the debugger and enter any command, I am greeted with this message:
error: in auto-import:
failed to get module 'Coventry_iPhone' from AST context:
error: /Users/ricky/Documents/Coventry/Config/Frameworks/iPhone/Coventry-iPhone-Bridging-Header.h:9:9: error: 'Silverlake-iPhone.h' file not found
#import "Silverlake-iPhone.h"
^
error: failed to import bridging header '/Users/ricky/Documents/Coventry/Config/Frameworks/iPhone/Coventry-iPhone-Bridging-Header.h'
Obviously something is wrong with importing a header file from another framework. Is there something akin to search paths I need to do with the debugger so it knows where to find this file? Or is the problem elsewhere?