我遵循了 cocoa 足的指示。

以下是我的Podfile:

platform :ios, '8.2'

pod 'SwiftyJSON', '~> 2.1'
pod 'SwiftSpinner', '~> 0.6'
pod 'Alamofire', '~> 1.1'
pod 'SuperRecord', '~> 1.2'
pod 'Toucan

当我完成 pod安装时,出现以下错误:



更新:

以下是我的控制台日志:
$ pod install
Analyzing dependencies
Downloading dependencies
Installing Alamofire (1.1.4)
Installing SuperRecord (1.2)
Installing SwiftSpinner (0.6.0)
Installing SwiftyJSON (2.1.3)
Installing Toucan (0.2.0)
[!] 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.

最佳答案

添加“use_frameworks!”到您的Podfile,因为:

引用:http://blog.cocoapods.org/CocoaPods-0.36/

关于ios - 快速运行Pod安装时出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29091522/

10-13 04:38