在podfile中获取错误

时间:2017-02-17 13:04:58

标签: ios

我使用podfile安装SCLAlertView

我在SCLAlertView.swift文件上收到了300条错误。

我正在使用xcdoe 7

如何解决问题。

这是我的podfile

平台:ios,'8.0'

目标SCLAlertView2 pod SCLAlertView

目标IceCreamShopTests执行

端 它会生成SCLAlertView.swift的podfile,但会收到300错误。

(可能是最新版本不适用于xcode 7)

1 个答案:

答案 0 :(得分:1)

<强>第一

如果您在Branch中办理登机手续,您可以找到支持swift 2.3的SCLAlertView版本 https://github.com/vikmeup/SCLAlertView-Swift/tree/swift-2.3

enter image description here

您可以直接使用而不是安装cocoapods。

<强>第二

如果您检查SCLAlertView.podspec,您可以找到cocoapods的版本,那么您可以通过

安装pod
 pod 'SCLAlertView', '~> 0.6'

如果你想使用swift 3+支持xcode 7.3和swift 2.3,那么请使用

pod 'SCLAlertView', '~> 0.7'

希望信息能够解决您的问题。