删除 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
。