项目安装CocoaPods

https://gems.ruby-china.com

一、初步安装

1、移除原有镜像源
$ gem sources --remove https://rubygems.org/

2、Ruby镜像来访问cocoapods,注意这里为https
$ gem sources -a https://gems.ruby-china.com

3、查看是否更换镜像成功
$ gem sources -l

4、安装cocoapods
$sudo gem install cocoapods

5、提示你输入电脑密码

6、使用search命令搜索类库名
$pod search AFNetworking

7、切换到项目所在目录,创建Podfile
cd /Users/yuanzhiying/n_test

8、创建文件
touch Podfile

9、编辑文件
vim Podfile

10、写入search到的三方库对应的命令,绿标题下面第二行
pod 'AFNetworking', '~> 3.0.0-beta.1'

11、编辑完后,开始安装
pod install

12、打开工程都需要从类型为工程名.xcworkspace文件打开

二、遇到问题

1、导入三方库后,import 导入头文件,不提示,解决办法
http://blog.csdn.net/meegomeego/article/details/17567447

使用了一段时间CocoaPods来管理Objective-c的类库,方便了不少。但是有一个小问题,当我在xcode输入import关键字的时候,没有自动联想补齐代码的功能,需要手工敲全了文件名,难以适应。
在stackoverflow上找到了解决办法:
Go to the Target > \”Build Settings\” tab and find the \”User Header Search Paths\” setting.
Set this to \”(BUILT_PRODUCTS_DIR)\” and check the \”Recursive\” check box. Now the built target will search the workspace’s shared build directory to locate the linkable header files. 简单说就是这么几步: 选择Target -> Build Settings 菜单,找到\”User Header Search Paths\”设置项 新增一个值{SRCROOT}",并且选择\”Recursive\”,这样xcode就会在项目目录中递归搜索文件
自动补齐功能马上就好使了。

2、pod搜索出来的库不是最新的,执行pod repo update来更新库

遇到问题,解决办法
http://www.jianshu.com/p/b5315bf42975

你可能感兴趣的:(项目安装CocoaPods)