【发布时间】:2016-11-16 14:42:21
【问题描述】:
我有一个 Objective-C 库,我正在尝试将 podspec 更新为 cocoapods。当我执行“pod spec lint”命令时,出现以下错误:
[!] The spec did not pass validation, due to 1 error.
[!] The validator for Swift projects uses Swift 3.0 by default, if you are using a different version of swift you can use a `.swift-version` file to set the version for your Pod. For example to use Swift 2.3, run:
`echo "2.3" > .swift-version`.
这是我的 podspec 文件:
Pod::Spec.new do |s|
s.name = "OSwitch"
s.version = "0.2.0"
s.license = { :type => "MIT", :file => "LICENSE" }
s.summary = "OSwitch is a customisable switch control writen in Objective C."
s.homepage = 'https://github.com/OyaSaid/OSwitch'
s.source = { :git => 'https://github.com/OyaSaid/OSwitch.git', :tag => s.version.to_s }
s.platform = :ios, "7.0"
s.ios.frameworks = ['UIKit', 'Foundation']
s.source_files = 'OSwitch/Classes/**/*.{h,m}'
s.requires_arc = true
end
为什么当我有一个客观的 C 库时会显示。我该如何解决这个问题?
谢谢
【问题讨论】:
标签: objective-c swift cocoapods lint