美文网首页iOS 移动端开发CoCoaPods的安装与使用
CocoaPods的安装及常见错误及解决方案

CocoaPods的安装及常见错误及解决方案

作者: 水中的蓝天 | 来源:发表于2017-02-16 15:11 被阅读14次

    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过程中的几个问题

    使用CocoaPods过程中 Unable to find a specification for

    CocoaPods的安装及常见错误解决办法

    ld: library not found for -lXXXXX 编译问题的解决方法

    (简单来说不论遇到什么问题,首先不要慌,仔细分析这个问题是怎么出现的.一定要看报错原因,根据原因做出相应的调整,有时候可能是你一个很简单的失误造成的 ! 安啦 问题就是用来解决的咯!)

    希望能过帮到遇到相关问题的伙伴!

    相关文章

      网友评论

        本文标题:CocoaPods的安装及常见错误及解决方案

        本文链接:https://www.haomeiwen.com/subject/mhhhwttx.html