Framework中没有这样的模块(依赖)

时间:2016-10-20 21:12:41

标签: swift xcode cocoapods

请不要标记为重复(因为常规没有这样的模块线程),我无法找到类似的线程。即使我已经研究了一段时间了。

我已将分叉框架更新为Swift 3.此框架具有依赖性,需要更新。

我无法在:git =>文件中链接podspec,这就是我选择从podspec文件中删除依赖项并在{{1}中实现两个框架的原因}}

podfile

pod 'ASTextInputAccessoryView', :git => 'https://github.com/davidseek/ASTextInputAccessoryView.git' pod 'ASPlaceholderTextView', :git => 'https://github.com/davidseek/ASPlaceholderTextView.git' ASPlaceholderTextView的依赖关系。

在我的项目中,我可以导入ASTextInputAccessoryView

enter image description here

但是在框架ASPlaceholderTextView内,ASTextInputAccessoryView会抛出缺少的模块。

enter image description here

我尝试在import ASPlaceholderTextView目标的一般情况下添加ASPlaceholderTextView - >链接框架:

enter image description here

以及ASTextInputAccessoryView目标的构建阶段 - >

enter image description here

我已多次清理并重新启动。我错过了什么?非常感谢帮助。

1 个答案:

答案 0 :(得分:1)

当我尝试在我的应用程序中包含第三方框架时,我遇到了这样的问题。我找到了一个解决方案,它对我有用,如下所示:

转到应用目标 - >常规设置 - >嵌入式二进制文件并在此处添加您的框架。

希望这有用。