嗨,我想通过创建框架并将其添加到项目中来对项目进行模块化。但是当我要为特定目标(即框架和主要目标)安装Pod时,会出现错误。
我已经搜索了这个特定问题,但没有发现有用的东西。
Error Image在这里
错误:
[!]找不到名为
Photo
的目标,却找到了testForModule
。
Podfile:
# sources
source 'https://github.com/CocoaPods/Specs.git'
# global config
platform :ios, '11.0'
use_frameworks!
workspace 'testForModule'
def networkAndParsingPods
pod 'Alamofire'
end
def uiPods
pod 'TextFieldEffects'
end
target 'testForModule' do
networkAndParsingPods
end
target 'Photo' do
uiPods
end
我之所以这样做是出于分离方面的考虑,因为某些模块可以与特定容器配合使用,而某些模块则不能访问该模块。
感谢您的帮助
答案 0 :(得分:1)
Photo
必须是Xcode项目中的目标,然后才能在Podfile中指定为目标。