没有这样的模块' SSZipArchive'使用Carthage XCode 8.1

时间:2017-01-24 09:20:32

标签: swift carthage ssziparchive

我想将SSZipArchive添加到我的项目中。我已经运行了carthage更新,将SSZipArchive.framework添加到嵌入式二进制文件和链接框架和库中 enter image description here

我还检查了框架搜索路径,它位于右侧,并且文件为ZipArchive.frameworkZipArchive.framework.dSYM,但我得到了No Such Module 'SSZipArchive' 什么错了?

1 个答案:

答案 0 :(得分:4)

正如您使用Carthage,您需要添加 {/ 1}}在您要使用它的文件中,而不是import ZipArchive

来源:ViewController.swift in the demo project

import SSZipArchive

对于错误:

  使用swift 3.0编译的

模块无法在swift 3.0.1中导入

使用以下命令

重建您的Carthage依赖项
#if UseCarthage
    import ZipArchive
#else
    import SSZipArchive
#endif