framework module Test {
umbrella header "Test.h"
export *
module * { export * }
}
这是我的模块文件的样子。如何解决以下警告。
模块的伞头'测试'不包括标题' NewTest.h'
我不熟悉模块文件。
答案 0 :(得分:-1)
你应该有一个模块地图
将代码修改为 -
framework module Test {
umbrella header "Test.h"
export *
module * { export * }
explicit module BFAppLinkResolving {
header "BFAppLinkResolving.h"
link "BFAppLinkResolving"
export *
}
explicit module BFWebViewAppLinkResolver {
header "BFWebViewAppLinkResolver.h"
link "BFAWebViewAppLinkResolver"
export *
}
}