gpt4 book ai didi

ios - Xcode 框架 : Umbrella header for module 'Test' does not include header 'NewTest.h'

转载 作者:行者123 更新时间:2023-11-28 17:51:29 25 4
gpt4 key购买 nike

framework module Test {
umbrella header "Test.h"

export *
module * { export * }
}

这是我的模块文件的样子。我该如何解决以下警告。

Umbrella header for module 'Test' does not include header 'NewTest.h'

我不熟悉模块文件。

最佳答案

你应该有一个模块映射

修改代码为-

 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 *
}
}

关于ios - Xcode 框架 : Umbrella header for module 'Test' does not include header 'NewTest.h' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32768743/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com