CocoaPods:library not found for -lPods

This is my first shot to write a blog in English. Enjoy! ;)

CocoaPods is a popular way to control iOS projects' dependency. And it's easy to use. 

If you got everything configured right for cocoapods, you can just integrate all dependency in your project with only one command: $ pod update.

As this blog not on details of how to configure and use cocoapods, we just focus on how to deal with a easy and sometimes confusing problem as it's already in the title of this blog.

ld: library not found for -lPods

The error detail is:

ld: library not found for -lPods
clang: error: linker command failed with exit code 1 (use -v to see invocation)

but the first line is the point.

You first use Cocoapods, but you take some time and effort to download and configure it. When you think it workds, but "BOOM" an error occured. It makes you really unhappy! Dude, I know how that feels, cuz I've been there. 

But when you find out what's going on there, you would just give it a smile! It's an easy one. You clicked the project file to open the cocoapods-handle-dependency project as what you always do. This is the problem! YEAH!!! What you got do to open the project correctly is to "CLICK THE WORKSPACE FILE".

So, my man. After you got cocoapods configration done, click the workspace file to open up your project! Then you will see how the project is organized:

For now, the proejct is a secret. :)

Hope this helps you!

 

欢迎加群互相学习,共同进步。QQ群:iOS: 58099570 | Android: 330987132 | Go:217696290 | Python:336880185 | 做人要厚道,转载请注明出处!http://www.cnblogs.com/sunshine-anycall/p/4142283.html

时间: 2024-10-03 21:30:38

CocoaPods:library not found for -lPods的相关文章

library not found for -lPods 的解决办法

在老项目工程中使用cocoapods,可能会报这个错误:library not found for -lPods . 导致这个错误可能有两个原因,这两个原因在编译过程中都是有蛛丝马迹可循的. 原因1: 在 pod install时,就会有告警信息提示: xxx target overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Target Support Files/Pods/Pods.debug.xcconfig'. Thi

iOS工具篇--CocoaPods

iOS开发过程中有好多第三方框架,十分便捷与开发者用最少的代码完成最优秀的App,一个上线的项目差不多得用到很多的框架,如果我们一个一个进行添加,则显得特别的慢,慢不是重点,重点是还容易出错,例如加载高德地图的框架特别复杂的环境适配,一步出错就会出现不知名的怪错误.所以一个shell命令编辑器就呼之欲出-CocoaPods 搭建ruby环境 注意:2015年Apple公司推出了iOS9,用https更替了http协议,所以可能您看到其他资料的CocoaPods并不能进行顺利安装,所以我写的这篇完

IOS安装CocoaPods完整流程

安装CocoaPods之前要先安装Ruby环境 先安装这个home-brew:http://mxcl.github.com/homebrew/   步骤1 -安装RVM  RVM 是干什么的这里就不解释了,后面你将会慢慢搞明白.             <span class="gp" style="background-color:#c0c0c0"> $ curl -L https://get.rvm.io | bash -s stable</s

(一)CocoaPods的使用及其原理

一.CocoaPods简介 CocoaPods manages library dependencies for your Xcode projects. CocoaPods 是Mac OS X 和 iOS 应用程序开发的一个第三方库依赖的管理工具,你可以用它来 帮助集中导入.配置以及更新所用到的第三方.在这之前可以自己定义依赖关系,利用CocoaPods便可自动的配置编译选项.详细可参考以下: CocoaPods官方指南地址 https://guides.cocoapods.org Cocoa

CocoaPods安装与使用

CocoaPods 简介 它是iOS最常用的第三方库依赖管理工具,且绝大多数优秀的开源框架都支持CocoaPods. CocoaPods项目的源码 在 Github 上管理.该项目开始于 2011 年 8 月 12 日,开发 iOS 项目不可避免地要使用第三方开源库,CocoaPods 的出现使得我们可以节省设置和更新第三方开源库的时间. CocoaPods 的安装 安装 安装方式异常简单 , Mac 下都自带 ruby,使用 ruby 的 gem 命令即可下载安装: $ sudo gem in

Cocoapods完整使用

原文出处:Cocoapods完整使用 前言 对于iOS App的开发,几乎都采用了Cocoapods来管理第三方库,那么对于我们开发人员来说,这是必备技能,必须要掌握如何使用.这篇文章就是介绍如何安装和使用CocoaPods的. 这篇文章对哪些人群参考价值? 对未使用过Cocoapods的人群有参考价值 对使用过Cocoapods,但是未深入了解过的用户有参考价值 对有开源精神的,希望将自己的代码贡献到Cocoapods的用户有参考价值 如果您不属于以上人群,您是可以不阅读本篇文章的,当然阅读完

详解2016 cocoapods的安装和使用以及版本升级遇到的问题_IOS

一.CocoaPods是什么? CocoaPods是一个负责管理iOS项目中第三方开源库的工具.CocoaPods的项目源码在Github上管理.该项目开始于2011年8月12日,在这两年多的时间里,它持续保持活跃更新.开发iOS项目不可避免地要使用第三方开源库,CocoaPods的出现使得我们可以节省设置和更新第三方开源库的时间,在iOS开发中经常会用到第三方库如AFNetworking,ASIHttpRequest等,在使用第三方库时,你除了要导数源码外,但是,集成这些依赖库需要我们手动去配

一个cocoapods问题的解决,希望能帮助到遇到类似情况的人

之前10.7的系统上运行过cocoapods没有问题.现在系统版本升级到了10.9,尝试使用cocoapods遇到问题,报告了类似下面的错误: Psych::SyntaxError - (/Users/psteinacher/.cocoapods/repos/master/CocoaPods-version.yml): mapping values are not allowed in this context at line 3 column 4 /System/Library/Framewo

手把手教你发布自己的CocoaPods开源库

本文讲的是手把手教你发布自己的CocoaPods开源库,发布自己的cocoapods开源库按照以下步骤,良心制作,包教包会!! 下面我会通过一个名为IFMMenu的项目来讲解一下整个过程. 1.写好代码,上传到github github上创建项目仓库的时候记得创建LICENSE(许可证/授权)文件,此文件必须要有. github上创建项目仓库 2.将自己的项目打成tag 因为cocoapods是依赖tag版本的,所以必须打tag,以后再次更新只需要把你的项目打一个tag,然后修改.podspec