问题
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. Now, I want to remove nyximagekit
but keep afnetwoking
. How to do that ?
回答1:
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.
回答2:
Remove the pod from your podfile, then run pod install
again.
回答3:
Just remove that pod line that you want to remove and run pod update !
回答4:
pictorial information detailed
来源:https://stackoverflow.com/questions/31672868/how-to-remove-one-of-the-cocoa-pods-plugin-from-xcode-project