我用两个 Objective-C 类构建了一个 swift 框架。在我发布一个框架后,它可以在我的环境中运行。但是我将它导入到另一个环境,但它不起作用。“缺少需要模块......”这是我的模块。
module RSAUtil [system] {
header "RSAUtil.h"
export *
}
module NetworkTool [system] {
header "NetworkTool.h"
export *
}
module openssl [system] {
header "OpenSSL_Lib/include-ios/openssl/bio.h"
header "OpenSSL_Lib/include-ios/openssl/opensslv.h"
header "OpenSSL_Lib/include-ios/openssl/rsa.h"
header "OpenSSL_Lib/include-ios/openssl/ssl.h"
header "OpenSSL_Lib/include-ios/openssl/err.h"
header "OpenSSL_Lib/include-ios/openssl/pem.h"
export *
}
我尝试了很多解决方案,但都失败了。谁能帮我?谢谢。