码迷,mamicode.com
首页 > 其他好文 > 详细

CocosPod 简单实用介绍

时间:2015-05-30 01:51:34      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:ios   管理   

1、下载第三方框架

1. 搜索第三方框架

# 搜索第三方框架(可只包含部分框架名例如: AFN)

$ pod search AFN

# 创建 Podfile

$ echo "pod ‘AFNetworking‘ " > Podfile

# 安装 Pod

$ pod install

2. 将CocosPod 加入源代码管理器

# 查看元旦库状态,红色部分是没有受源代码管理的文件 ‘?‘

$ git status

# 将新添加的文件添加到元代码库管理

$ git add .

# 查看源代码库状态,绿色部分是加入元代管理的文件 ‘A’

$ git status

# 提交修改,并编写注释

$ git commit -m "添加 AFN 框架"

# 查看源代码库状态,nothing to commit, working directory clean 表示所有文件都已经提交至代码仓库管理

$ git status




CocosPod 简单实用介绍

标签:ios   管理   

原文地址:http://blog.csdn.net/wangxiaoit/article/details/46247665

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!