我使用podfile安装SCLAlertView
。
我在SCLAlertView.swift
文件上收到了300条错误。
我正在使用xcdoe 7
。
如何解决问题。
这是我的podfile
平台:ios,'8.0'
目标SCLAlertView2
pod SCLAlertView
端
目标IceCreamShopTests
执行
端
它会生成SCLAlertView.swift
的podfile,但会收到300错误。
(可能是最新版本不适用于xcode 7)
答案 0 :(得分:1)
<强>第一强>
如果您在Branch中办理登机手续,您可以找到支持swift 2.3的SCLAlertView
版本
https://github.com/vikmeup/SCLAlertView-Swift/tree/swift-2.3
您可以直接使用而不是安装cocoapods。
<强>第二强>
如果您检查SCLAlertView.podspec
,您可以找到cocoapods的版本,那么您可以通过
pod 'SCLAlertView', '~> 0.6'
如果你想使用swift 3+支持xcode 7.3和swift 2.3,那么请使用
pod 'SCLAlertView', '~> 0.7'
希望信息能够解决您的问题。