0
我用另一個名字創建了我的xcode項目的副本。我現在想要刪除alamorefire以及與之相關的pod,以便我可以重新安裝alamorefire框架。你如何發泄alamofire?
我用另一個名字創建了我的xcode項目的副本。我現在想要刪除alamorefire以及與之相關的pod,以便我可以重新安裝alamorefire框架。你如何發泄alamofire?
的第一個評論你在你的Podfile庫象下面這樣:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!
target '<Your Target Name>' do
#pod 'Alamofire', '~> 4.4'
end
在終端運行以下命令:
pod install
這將從您的項目中刪除庫。可打開的註釋行之後:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!
target '<Your Target Name>' do
pod 'Alamofire', '~> 4.4'
end
並重新運行後安裝的命令:
pod install
庫將重新安裝在您的項目。
所以你想更新alamofire的版本? –