Removing a Pod from your Project
Removing a Pod
Example Podfile:
target 'MyProject' do
pod 'AWSS3'
pod 'RealmSwift'
endand if you wanted to remove RealmSwift, remove that line from your Podfile
target 'MyProject' do
pod 'AWSS3'
endthen from the command line run
$ pod installand CocoaPods will remove RealmSwift.