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
In case if it is not your framework and there is nothing to do you can disable warning in such way
#pragma clang diagnostic push #pragma clang diagnostic ignored "-Wincomplete-umbrella" #import #pragma clang diagnostic pop
Note - it is not a fix, it just hide the problem.