如何查看 Alamofire 库版本?
How to check Alamofire library version?
我使用 cocoapod.I 实现了 Alamofire,我正在使用 Xcode7.3.1。
我的 podfile 是这样的
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'ALamoWeather' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for ALamoWeather
pod 'Alamofire'
end
如何查看使用的是哪个Alamofire库版本?
请帮助我。
在 textedit 中打开 Podfile.lock
。您会找到 Alamofire
的版本和其他使用的第三方版本。
我的一个 pod 的快照 file.lock:-
PODS:
- AFNetworking (2.6.3):
- AFNetworking/NSURLConnection (= 2.6.3)
- AFNetworking/NSURLSession (= 2.6.3)
- AFNetworking/Reachability (= 2.6.3)
- AFNetworking/Security (= 2.6.3)
- AFNetworking/Serialization (= 2.6.3)
- AFNetworking/UIKit (= 2.6.3)
- AFNetworking/NSURLConnection (2.6.3):
- AFNetworking/Reachability
- AFNetworking/Security
- AFNetworking/Serialization
- AFNetworking/NSURLSession (2.6.3):
- AFNetworking/Reachability
- AFNetworking/Security
- AFNetworking/Serialization
- AFNetworking/Reachability (2.6.3)
- AFNetworking/Security (2.6.3)
SPEC CHECKSUMS:
AFNetworking: cb8d14a848e831097108418f5d49217339d4eb60
COCOAPODS: 0.38.2
只需打开您的项目,然后 select pod,您将看到安装的 pod 版本。
我使用 cocoapod.I 实现了 Alamofire,我正在使用 Xcode7.3.1。 我的 podfile 是这样的
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'ALamoWeather' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for ALamoWeather
pod 'Alamofire'
end
如何查看使用的是哪个Alamofire库版本? 请帮助我。
在 textedit 中打开 Podfile.lock
。您会找到 Alamofire
的版本和其他使用的第三方版本。
我的一个 pod 的快照 file.lock:-
PODS:
- AFNetworking (2.6.3):
- AFNetworking/NSURLConnection (= 2.6.3)
- AFNetworking/NSURLSession (= 2.6.3)
- AFNetworking/Reachability (= 2.6.3)
- AFNetworking/Security (= 2.6.3)
- AFNetworking/Serialization (= 2.6.3)
- AFNetworking/UIKit (= 2.6.3)
- AFNetworking/NSURLConnection (2.6.3):
- AFNetworking/Reachability
- AFNetworking/Security
- AFNetworking/Serialization
- AFNetworking/NSURLSession (2.6.3):
- AFNetworking/Reachability
- AFNetworking/Security
- AFNetworking/Serialization
- AFNetworking/Reachability (2.6.3)
- AFNetworking/Security (2.6.3)
SPEC CHECKSUMS:
AFNetworking: cb8d14a848e831097108418f5d49217339d4eb60
COCOAPODS: 0.38.2
只需打开您的项目,然后 select pod,您将看到安装的 pod 版本。