1. 建好Podfile,并在命令行中输入pod install,结果报以下错误:
[!] The XXX 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.
[!] The 'SubWayWifi [Release]' target overrides the 'OTHER_LDFLAGS' build setting defined in
'Pods/Target Support Files/Pods/Pods.release.xcconfig'.
This can lead to problems with the CocoaPods installation
- Use the '$(inherited)' flag, or
- Remove the build settings from the target.
现在打开有pods建好的workspace文件,尝试编译,会报ld: library not found for -lPods错误,原因就是工程里面的设置项覆盖了pods中xcconfig中的设置。解决办法就是在build setting->other linker flag中,加上$(inherited)即可。
OK,重新安装pod试试,由于我们已经进行过一次安装,所以本次只用更新一次即可,在命令行中输入pod update,现在没有报任何错误。但是当我尝试编译工程的时候,又报了一个错误:ld: library not found for -lReactiveCocoa。咋又找不到相应的第三方库了呢?好吧,继续查资料。
还是在cocoapods的官网Troubleshooting找到的解决办法。在Edit Scheme中,找到Build项,点击+号,找到Pods静态库,点击Add。再尝试编译,编译通过。(该方案作者 ray_xia);
借此之后还有不少优秀的方案可以借鉴一下:
使用CocoaPods过程中 Unable to find a specification for
ld: library not found for -lXXXXX 编译问题的解决方法
(简单来说不论遇到什么问题,首先不要慌,仔细分析这个问题是怎么出现的.一定要看报错原因,根据原因做出相应的调整,有时候可能是你一个很简单的失误造成的 ! 安啦 问题就是用来解决的咯!)
希望能过帮到遇到相关问题的伙伴!
网友评论