在终端更新pod的时候,提示警告:
target overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Target Support Files/Pods/Pods.debug.xcconfig'. This can lead to problems with the CocoaPods installation
- Use the `$(inherited)` flag, or
- Remove the build settings from the target.
当时没有在意,以为更新成功了,但是打开项目Xcode编译报错,显示找不到pod中集成的第三方的头文件,原因可能是项目的Target中的头文件的配置信息与pod中自动添加的配置信息冲突了!
解决办法是选择使用 CocoaPods 中的设置,在Other Linker Flags的地方用$(inherited)替换掉原来的!如图: