gpt4 book ai didi

objective-c - Cocoapods 的 Lint 失败

转载 作者:搜寻专家 更新时间:2023-10-31 22:44:21 25 4
gpt4 key购买 nike

我有一个 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

为什么当我有一个 Objective-C 库时会显示此信息。我该如何解决这个问题?

谢谢

最佳答案

它表明,因为您可以在 pod 中同时使用 swift 和 Objc 语言。只需在终端中运行以下命令:

    `echo "2.3" > .swift-version` 

在 XCode 中将“2.3”替换为您当前的 Swift 版本,例如,如果您使用的是 3.1,请将其替换为“3.1”。它将在您的 pod-project 文件夹中创建一个 swift 版本文件。然后您可以运行 lint 命令来验证您的 podspec。

关于objective-c - Cocoapods 的 Lint 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40634963/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com