I\'m using Xcode6 GM to create a Coacoa Touch Framework (a new function in Xcode6), then this framework is included into my app.
Everything is fine (works fine), except
I ran into the same problem and eventually fixed it by adding my project headers into the umbrella header. When you create a new framework it should start with a single .h
file titled by the project (in your case DirectProximityFramework.h
).
Inside this file is a comment:
In this header, you should import all the public headers of your framework using statements like
#import
So just add your GeofencingHelper.h
file in this file:
#import
This should remove all of your warnings!