I have adapted the Oomph MapKit framework for use under ARC. To do this, I created a new project in Xcode and added their sources from GitHub. I also added a small test app in the same project to test the workings of the framework. I created a target for both the framework and the test app.
All seems to be working nicely however I cannot get the imports to behave properly.
In the original source files they have (as an example from the MKAnnotation.h file):
#import <Cocoa/Cocoa.h>
#import <MapKit/MKView.h>
#import <WebKit/WebKit.h>
This generates an error in my project stating that the file MapKit/MKView.h
was not found and I need to replace the import with:
#import "MKView.h"
What do I need to do make the imports with the square brackets work? I've gone through the massive amounts of settings but for the life of me cannot find a clue.