我正在运行 XCode 7 Swift 2.0 iOS 9。
我想在我的项目中使用 Cocoapods 安装 Alamofire:
gem install cocoapods
pod setup
pod init
更新 Podfile 到:
# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'
use_frameworks!
target 'JSONeg' do
pod 'Alamofire', :branch => 'swift-2'
end
然后我安装了吊舱:
pod install
然后我将以下内容添加到 ViewController.swift
import Alamofire
这就产生了以下错误:
Cannot load underlying module for 'Alamofire'
我用另一个 pod 进行了测试,结果也出现了同样的错误,所以我猜问题出在 Cocoapods 的安装上。如果你能帮忙,我将不胜感激。