首页 > 学院 > 开发设计 > 正文

Cocoapod 安装使用笔记

2019-11-08 00:04:25
字体:
来源:转载
供稿:网友

0、gem 是用来管理我们终端下的很多应用程序,国外服务器,提供非常丰富的终端程序

1、修改源服务器      sudo gem sources -a https://ruby.taobao.org/   或   http://rubygems-china.oss.aliyuncs.com

      sudo gem sources -r https://rubygems.org/    移除源

 2、安装 cocoapods      sudo gem install cocoapods 3、初始设置      pod setup //设置本地框架库     (注意:该指令一般不好用,因此下载GitHub客户端,fork下 cocoapods 的项目,然后使用客户端克隆到本地目录:~/.cocoapods),该成功率高。4、终端命令汇总     pod init  //创建默认的Podfile     pod install //第一次安装框架使用     pod install -—no-repo-update //快速更新框架,而不更新本地索引,速度快     pod search XXXX (框架民,不区分大小写) //搜索框架     pod —help  //帮助

  

   (在项目文件夹下,在终端使用该命令)   安装第三方框架时,只是第一次使用install ,之后就是直接使用Update,()    再次添加第三方框架时可以 直接pod ‘  框架名’    若不想再次使用该框架时,就在podfile中删除,就可以  cocoaPods中的podfile介绍;如何指定版本号:1、一个简单的podfile:pod 'AFNetworking', '~> 1.0' 版本号可以是1.0,可以是1.1,1.9,但必须小于22、-个更简单的podfile:pod 'AFNetworking', '1.0' // 版本号指定为1.03、一个更更简单的podfile:pod 'AFNetworking',  // 不指定版本号,任何版本都可以版本详细说明 Any version higher than 0.1 0.1以上(1)’>= 0.1' Version 0.1 and any higher version 0.1以上,包括0.1(2)’< 0.1' Any version lower than 0.1 0.1以下(3)’<= 0.1' Version 0.1 and any lower version 0.1以下,包括0.1(4)In addition to the logic Operators CocoaPods has an optimisic operator ~> :'~> 0.1.2' Version 0.1.2 and the versions up to 0.2, not including 0.2 and higher 0.2以下(不含0.2),0.1.2以上(含0.1.2)(5)’~> 0.1' Version 0.1 and the versions up to 1.0, not including 1.0 and higher 1.0以下(不含1.0),0.1以上(含0.1)(6)’~> 0' Version 0 and higher, this is basically the same as not having it. 0和以上,等于没有此约束    
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表