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

后端 未结 4 2125
逝去的感伤
逝去的感伤 2021-02-12 23:19

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

4条回答
  •  北恋
    北恋 (楼主)
    2021-02-12 23:47

    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.

提交回复
热议问题