I've been asked to use a Objective-C framework in my Swift project.
But I have no idea how to accomplish this.
I've added this file:
Objective-CBridgingHeader.h
Inside this file I've put:
#ifndef Objective_CBridgingHeader_h
#define Objective_CBridgingHeader_h
#import <FMShop/FMShop.h>
#endif /* Objective_CBridgingHeader_h */
Now I was expecting to be able to:
Import FMShop
And get access to that framework using Swift code. However when I try to
Import FMShop
My project no longer compiles claiming that there: "No such module 'FMShop'"
What am I missing here?
My base SDK is iOS 8.0 and I'm using Xcode 7.3.1
This is what my project looks like: