Remove or uninstall library previously added : cocoapods
I added an external framework via cocoapods into my iOS application. How can i remove that library from the project? Michal Since the accepted answer's side effects have been removed by a script written by Kyle Fuller - deintegrate , I'll post the proper workflow here: Install clean: $ sudo gem install cocoapods-clean Run deintegrate in the folder of the project: $ pod deintegrate Clean: $ pod clean Modify your podfile (delete the lines with the pods you don't want to use anymore) and run: $ pod install Done. fannheyward Remove lib from Podfile, then pod install again. user5807443 Remove the