Xcode “Missing Submodule” warning

前端 未结 8 1789
陌清茗
陌清茗 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:48

    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!

提交回复
热议问题