我是否需要在 xcode 9、swift 4 中明确说明我想使用 cocoapods 安装哪个版本的 alamofire

Do I need to explicitly state which version of alamofire I want to install using cocoapods in xcode 9, swift 4

有这个教程 re: alamofire https://www.raywenderlich.com/147086/alamofire-tutorial-getting-started-2

并且在其中要安装的 pod 声明为 'Alamofire','~> 4.2.0'

我需要指定版本 4.2.0 还是我可以将其声明为 pod 'Alamofire'?

我去了 cocoapods 上的 Alamfoire 页面,但我实际上找不到最新的稳定版本,尽管我确定它在某处。

还有这个 post 回复:alamofire 不能与 xcode 9/swift 4 一起工作,但我认为问题是那个人打开了错误的项目而不是代码库。

但如果有人知道任何其他问题,请随时大声说出来。

谢谢。

如果您声明以下内容,您将获得最新的稳定版本:

pod 'Alamofire'

如果您声明一个版本号,那么您将使用该版本:

pod 'Alamofire', '~> 4.2.0'

版本说明。

pod 'Alamofire', '~> 4.2.0'


'> 0.1' Any version higher than 0.1
'>= 0.1' Version 0.1 and any higher version
'< 0.1' Any version lower than 0.1
'<= 0.1' Version 0.1 and any lower version