无法创建 pod

Unable to create pod

我正在尝试创建一个库。我正在关注这个 tutorial. Pod lint successfully validate the pod spec. However when i import it as module i get error Use of unknown type. Here is the project

更新:

podspec 文件如下所示:

请确保选择了您的目标会员。

查看目标会员。 Select 你的文件然后打开文件检查器 (⌥ + ⌘ + 1) [option] + [command] + 1

同时删除额外的构建 phases.check bundle resources.Please 检查您是否使用 MZDownloadManager.If 分配了相同的变量名称或相同的方法名称,因此请替换为其他名称和 运行.

清理、构建然后 运行..

我花了这么多时间终于弄明白了这个问题。问题是我的开发 pod 中的 类 没有声明为 public 并且 docs 明确指出:

It's worth mentioning here, as this catches people quite often, a Swift library needs to have it's classes declared as public for you to see them in your example library.

我希望这会为面临类似问题的其他开发人员节省时间。