How to remove one of the cocoa pods plugin from Xcode project

泪湿孤枕 提交于 2019-12-09 05:12:22

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!