anyone know how to remove one of the cocoa pods plugin from Xcode project ? For example, I have installed afnetworking and nyximagekit in my project. N
You have to edit the Podfile ($ emacs Podfile in terminal.app) and remove the line pod 'nyximagekit' from it. (ctrl+x, ctrl+s to save, then ctrl-x, ctrl+c to quit emacs)
Once you did that, run pod update and it will remove nyximagekit from your project.