Alamofire Xcode 7

Alamofire with Xcode 7

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

我正在使用最新的 Cocoapods 版本。

我的 Podfile 是:

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

是否可以在 Xcode 7 和 Swift 2.0 中使用它?

更新

当我运行:

pod install

我明白了:

Installing Alamofire (2.0.0-beta.1)
[!] Pods written in Swift can only be integrated as frameworks; this feature is still in beta. Add use_frameworks! to your Podfile or target to opt into using it. The Swift Pod being used is: Alamofire

按照错误消息告诉您的操作并将 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' 或等效项。

这就是 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,如果您在使用这两个库时遇到任何问题,我们随时为您提供帮助,问候