刪除 Pod
示例 Podfile:
target 'MyProject' do
pod 'AWSS3'
pod 'RealmSwift'
end
如果你想刪除 RealmSwift
,請從你的 Podfile 中刪除該行
target 'MyProject' do
pod 'AWSS3'
end
然後從命令列執行
$ pod install
和 CocoaPods 將刪除 RealmSwift
。
示例 Podfile:
target 'MyProject' do
pod 'AWSS3'
pod 'RealmSwift'
end
如果你想刪除 RealmSwift
,請從你的 Podfile 中刪除該行
target 'MyProject' do
pod 'AWSS3'
end
然後從命令列執行
$ pod install
和 CocoaPods 將刪除 RealmSwift
。