CocoaPods是一个负责管理iOS项目中第三方开源代码的工具。CocoaPods项目的源码在Github上管理。该项目开始于2011年8月 12日,经过一年多的发展,现在已经超过1000次提交,并且持续保持活跃更新。开发iOS项目不可避免地要使用第三方开源库,CocoaPods的出现 使得我们可以节省设置和更新第三方开源库的时间。

安装

在安装之前,运行以下命令

  1. gem update --system

可以升级系统当前的ruby版本

安装方式异常简单, Mac下都自带ruby,通过终端(Terminal)使用ruby的gem命令即可下载安装:

  1. $ gem install cocoapods
  2. $ pod setup
  1. gem install cocoapods

命令也可以自动升级当前cocoapods版本

一旦安装完毕,通过运行

  1. pod setup

命令来设置CocoaPods

Once installed, setup CocoaPods by running the pod setup command.
During the setup process, the CocoaPods environment is formed and a
.cocoapods directory is created in your home folder. This hidden folder
contains all the available pod specifications or pod specs.

A dependency declaration has a lot more configuration options, which
can be set in the Podfile. If you want to work with the bleeding edge
version of a library, for example, you can replace a pod’s version
number with :head as shown below. You can even tell CocoaPods what
source to use by specifying the git repository or referring CocoaPods to
a local copy of the library. These are more advanced features of
CocoaPods.

  1. pod 'AFNetworking', :head
  2. pod 'SVProgressHUD', :git => 'https://github.com/samvermette/SVProgressHUD'
  3. pod 'ViewDeck', :local => '~/Development/Library/ViewDeck'
  4. pod 'DTCoreText', :git => 'https://github.com/Cocoanetics/DTCoreText.git'

With our list of dependencies specified, it is time to continue the
setup process. Update the Podfile as shown below and run pod install in
the Terminal. Make sure to run this command in the root of your Xcode
project where you also created the project’s Podfile.

  1. platform :ios, '6.0'
  2. pod 'ViewDeck', '~> 2.2.2'
  3. pod 'AFNetworking', '~> 1.1.0'
  4. pod 'SVProgressHUD', '~> 0.9.0'
  5. pod 'HockeySDK', '~> 3.0.0'
  6. pod install

使用:

Open Terminal, and navigate to the folder where your project is. Type the following:

  1. touch Podfile
  2. open -e Podfile

TextEdit should open up showing an empty file. You just created the
pod file and opened it! Ready to add some content to the empty pod file?

Copy and paste the following lines into the TextEdit window:

  1. platform :ios
  2. pod 'AFNetworking', '0.9.1'

Now, save the file and close TextEdit, going back to terminal. Ready to configure your project?

Issue the following command via Terminal:

  1. pod install

You should see output similar to the following:

  1. Updating spec repo `master'
  2. Installing AFNetworking (0.9.1)
  3. Generating support files

It might also tell you something like this:

  1. [!] From now on use `CocoaPodsExample.xcworkspace'

If you type ls now (or browse the project folder using Finder),
you’ll see that CocoaPods created a Pods folder – where it stores all
dependencies – and CocoaPodsExample.xcworkspace.

  1. VERY IMPORTANT!
  2. From now on, as the command-line warning mentioned, you must always open the workspace (CocoaPodsExample.xcworkspace) and not the project!

现在,你的所有第三方库都已经下载完成并且设置好了编译参数和依赖,你只需要记住如下2点即可:

使用CocoaPods生成的 .xcworkspace 文件来打开工程,而不是以前的 .xcodeproj 文件。

每次更改了Podfile文件,你需要重新执行一次pod install命令

安装DTCoreText一定要注意Other Linker Flags的属性值

-all_load和-ObjC要满足

CocoaPods 安装使用的更多相关文章

  1. 最新的 cocoaPods 安装方法

    经过努力终于发现了最新的 解决cocoaPods安装的办法: taobao Gems 源已停止维护,现由 ruby-china 提供镜像服务 第一步:安装rvm, 不管需不需要升级ruby,rvm可以 ...

  2. cocoapods安装

    什么是cocoapods CocoaPods是一个用来帮助我们管理第三方依赖库的工具.它可以解决库与库之间的依赖关系,下载库的源代码,同时通过创建一个Xcode的workspace来将这些第三方库和我 ...

  3. iOS 之 Cocoapods安装

    进入正题前,先来点前奏:了解cocoapods是某天看一个博客,那时才明白原来写项目不用一个个将三方库拷进项目里啊,惊讶的我是一塌糊涂的啊...(原谅我那时还没进入过正规的IT公司....好多你们自然 ...

  4. mac 10.11.6,Xcode8下,ruby2.3安装,Cocoapods安装~

    适用环境 mac: 10.11.6 Xcode:8.1 命令执行步骤(安装ruby2.3前准备工作) 查看ruby更新源 gem sources  -L 删除默认官方或者淘宝,新增 https://g ...

  5. Mac 下安装ruby,以及CocoaPods安装以及使用网摘

    ruby安装网址:https://ruby-china.org/wiki/install_ruby_guide CocoaPods安装和使用教程地址:http://code4app.com/artic ...

  6. cocoapods安装以及使用,安装过程中ruby版本过低

    cocoapods安装以及使用,安装过程中ruby版本过低 字数473 阅读103 评论1 喜欢2 1.打开终端 2.移除现有 Ruby 默认源 $ gem sources --remove http ...

  7. 2016最新CocoaPods安装和错误解决 + 自己的经验

    p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 20.0px Times; color: #333333; background-color: #fffff ...

  8. CocoaPods安装与使用

    CocoaPods简介: CocoaPods 是什么? CocoaPods 是开发 OS X 和 iOS 应用程序的一个第三方库的依赖管理工具.利用 CocoaPods,可以定义自己的依赖关系 (称作 ...

  9. << CocoaPods安装和使用教程 >>github code4app以及cocoachina 苹果官方文档

    developer.apple.com 英文搜索各个技术的官方介绍文档, 前提是英文过关 cocoachina ios最新新闻, 信息 code4app上有许多组件 http://www.code4a ...

  10. 史上最详细的CocoaPods安装教程

    虽然网上关于CocoaPods安装教程多不胜数,但是我在安装的过程中还是出现了很多错误,所以大家可以照下来步骤装一下,我相信会很好用. 前言 在iOS项目中使用第三方类库可以说是非常常见的事,但是要正 ...

随机推荐

  1. Unity3D研究院之IOS&Android收集Log文件(六十二)

    开发项目的时候尤其在处理与服务器交互这块,如果服务端程序看不到客户端请求的Log信息,那么无法修改BUG.在Windows上Unity会自动讲Log文件写入本地,但是在IOS和Android上确没有这 ...

  2. 使用Decimal.js解决前端计算金钱失真问题

    1.加载 $ npm install --save decimal.js 2.页面导入 import {Decimal} from 'decimal.js' 3.使用 // 加法 new Decima ...

  3. sequoiadb sdbexprt 导入工具进阶使用

    在做sdb 导入操作时,通过more 查看数据,格式是比较正常的,样例数据如下: CB20160630968101173208|||||_*||BZ|B3412|||||09664.8900| ||| ...

  4. DB2 - 编目的解释

    编目(Catalog),是在本地或远程建立客户端到服务器的数据库连接的过程.其目的在于获取编目信息,即生成用来访问数据库的目录.系统数据库目录包含一个列表和指针,通过目录可以使 DB2 能够找到已知的 ...

  5. css实现发光的input输入框

    效果图截图: 案例代码示下: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> ...

  6. flask_之参数传递

    参数篇 request接收数据 request对象 method:当前请求方法(POST,GET等) url:当前链接地址 path:当前链接的路径 environ:潜在的WSGI环境 headers ...

  7. py3.5 telnet的实例(在远程机器上批量创建用户)

    import sysimport telnetlibimport time HOST = ["172.18.217.12","172.18.217.13"]#往 ...

  8. 551 Student Attendance Record I 学生出勤纪录 I

    给定一个字符串来代表一个学生的出勤纪录,这个纪录仅包含以下三个字符:    'A' : Absent,缺勤    'L' : Late,迟到    'P' : Present,到场如果一个学生的出勤纪 ...

  9. python学习之队列

    import queue task_queue = queue.Queue() #创建队列

  10. python学习之序列化

    序列化:不同编程语言之间传递对象需要序列化成标准格式,有XML /JSON,json格式化为字符串,UTF-8编码,速度快,切实标准格式.JSON 和 Python内置的数据类型对应如下: JSON ...