1

我正在使用 Xcode 7.0 beta 4 (7A165t)。我想添加 Alamofire 库,但总是失败。

我正在使用最后一个 Cocoapods 版本。

我的 Podfile 是:

pod 'Alamofire', :git => 'https://github.com/Alamofire/Alamofire.git', :branch => 'swift-2.0'

是否可以在带有 Swift 2.0 的 Xcode 7 中使用它?

更新

当我运行时:

pod install

我明白了:

安装 Alamofire (2.0.0-beta.1)
[!] 用 Swift 编写的 Pod 只能作为框架集成;此功能仍处于测试阶段。添加use_frameworks!到您的 Podfile 或目标以选择使用它。使用的 Swift Pod 是:Alamofire

4

2 回答 2

4

执行错误消息告诉您的操作并添加use_frameworks!到您的 Podfile。这是我的一个例子:

source 'https://github.com/CocoaPods/Specs.git'
platform :osx, '10.10'
use_frameworks!
pod 'Alamofire', :git => 'https://github.com/Alamofire/Alamofire.git', :branch => 'swift-2.0'

对于 iOS 而不是 OS X,将平台行替换为platform :ios, '8.0'或等效项。

于 2015-08-19T11:15:06.503 回答
0

这就是 mi CocoaPods 文件的外观,我目前在 Xcode7 Beta 的 swift2.0 中工作

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

target 'RESTEST' do
pod 'Alamofire', '~> 2.0'
pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git'

我正在使用 SwiftyJSON 和 Alamofire,如果您在使用这两个库时遇到任何问题,我们会在这里为您提供帮助,问候

于 2015-09-24T19:35:41.347 回答