Xcode “Missing Submodule” warning

前端 未结 8 1718
陌清茗
陌清茗 2021-02-01 02:13

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

8条回答
  •  情深已故
    2021-02-01 02:52

    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.

提交回复
热议问题