博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何使项目能够使用 CocoaPods
阅读量:5946 次
发布时间:2019-06-19

本文共 974 字,大约阅读时间需要 3 分钟。

How about ??What to do??

什么是 CocoaPods,不好意思自己查去。

Steps to add CocoaPods to manage dependencies in your project:

添加CocoaPods依赖到管理项目中的步骤:

sudo gem install CocoaPods -> This installs CocoaPods as a piece of software on your machine.

sudo gem install CocoaPods 执行它可以将一份CocoaPods软件安装到您的计算机上。

Go to the root of your project directory and execute pod init -> This will add a base Podfile to your project.

转到项目目录的根目录并执行 pod init - >这将为您的项目添加一个基本的Podfile。

Add the external dependencies that you have to this Podfile by editing it.

通过编辑它来添加您对此Podfile的外部依赖项。

Run pod install which will fetch all the external dependencies mentioned by you, and associate it with a .xcworkspace file of your project. This .xcworkspace file will be generated for you if you already do not have one.

运行pod install,它将获取您添加的所有外部依赖项,并将其与项目的.xcworkspace文件相关联。如果您没有此文件,则将为您生成此.xcworkspace文件。

From here on, you should use .xcworkspace file instead of .xcproject.

从此,您应该使用.xcworkspace文件打开项目而不是.xcproject打开项目。

以上。

转载地址:http://tudxx.baihongyu.com/

你可能感兴趣的文章
理解HTTPS
查看>>
linux环境下apache配置虚拟站点
查看>>
ACM — 辗转相除法(Euclidean algorithm)求最大公因数(GCD)
查看>>
实例讲解async的generator实现
查看>>
Friday Q&A 2016-02-19: 什么是安全区域?
查看>>
vertx的一些问题
查看>>
将json字符串转化为json对象(需要引入json2.js框架)[转]
查看>>
python常用的包
查看>>
[译] 学习如何构建自动化、跨浏览器的 JavaScript 单元测试
查看>>
根治JavaScript中的this-ECMAScript规范解读
查看>>
协议与代理之间的阐述
查看>>
Kubernetes 1.2.0 发布,Docker集群管理驶入快车道
查看>>
在CentOS下,利用FFMPEG对视频进行转码
查看>>
SublimeText3系列(3)- HTML-CSS-JS Prettify美化代码&Markdown Preview写作
查看>>
理解 Redux
查看>>
填一填用了半个月 ionic 遇到的坑
查看>>
[译] 用 Haskell 写简单的 Monadic Parser
查看>>
bling_hash——Node.js 字符串哈希的包
查看>>
谷歌 .dev 顶级域名正式开放
查看>>
Android Q 将获得大量的隐私保护功能
查看>>