新集成cocoapod路径问题

前因

今天,在给老的项目“瘦身”的时候,发现了一些旧的,不再使用的第三方库。或者是一些正在使用的,但是目录结构看起来相当复杂的第三方。在整理的时候,看着可以说是相当的烦心。

然后,就想着给项目添加cocoapods支持

后果

开始整理!!

  • 终端cd到当前项目路径下
  • pod init pod初始化
  • 然后添加需要使用pod管理的第三方库名,以及相应的版本号(如不知道,可用pod search xxx来搜索),整理完成之后,保存退出(shift+zz
  • 更新pod update

然后,就出现了以下的问题

The xxx target overrides the ‘HEADER_SEARCH_PATHS’ build setting defined in ‘’pods/Target Support Files/Pods-xxxxx.config. This can lead to problems with the Cocoapods installation

-Use the ‘$(inherited)’ flag, or
-Remove the build settings from the target.

处理

  • 选中target
  • build Setting中,分别给Header search pathsother linker flags中添加$(inherited)

结束