我成功地通过cocoapods安装了Alamofire,并且在Xcode的设备上构建和运行应用程序时一直在使用它。现在,当我将项目归档以进行分发时,我收到错误:
没有这样的模块' Alamofire'
我将我的配置文件切换到我用于分发的正确的Ad Hoc配置文件,但由于我切换到使用cocoapods而不是手动安装Alamofire,我无法存档。我尝试通过设置" Build Active Architecture Only"到"不"在构建设置下,但没有运气。
答案 0 :(得分:7)
答案 1 :(得分:0)
您需要将import Alamofire
添加到swift文件
答案 2 :(得分:0)
platform :ios, '9.0'
use_frameworks!
target '<Your Target Name>' do
pod 'Alamofire', :git=>'https://github.com/Alamofire/Alamofire'
end
我希望这会对你有所帮助。
答案 3 :(得分:0)