博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS组件化开发一本地环境配置(一)
阅读量:5091 次
发布时间:2019-06-13

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

首先我们要使用pod支持组件化开发

  • 解决CocoaPods慢的方案(gem和pod repo换源)
  • gem换源 
    $ gem sources --remove https://rubygems.org/ # 移除默认源 
    $ gem sources -a https://gems.ruby-china.org/ # 添加Ruby China镜像 
    $ gem sources -l 

    确保只有gems.ruby-china.org源

    pod repo换源 
    $ pod repo 

    默认是GitHub源

    master 
    - Type: git (master) 
    - URL: https://github.com/CocoaPods/Specs.git 
    - Path: /Users/cheng/.cocoapods/repos/master 
    1 repo 

    我们把它换成Coding.net源

  • $ pod repo remove master 
    $ pod repo add master https://git.coding.net/CocoaPods/Specs.git 
    $ pod repo update 

    如果执行pod repo add出现错误

  • 错误 

    那么使用以下办法

    $ git clone https://git.coding.net/CocoaPods/Specs.git ~/.cocoapods/repos/master 
    $ pod repo update 

    另外,如果Podfile文件中有

    source 'https://github.com/CocoaPods/Specs.git' 

    也需要把它换成repo的源,否则依然是使用GitHub源

    上面的步骤都完成后,即可使用

    $ pod install 
    $ pod update 

pod search AFNetworking

出现错误:

1、what did you do ?

2、Unable to find a pod with name, author, summary, or descriptionmatching

等错误

删除~/Library/Caches/CocoaPods目录下的search_index.json文件

pod setup成功后,依然不能pod search,是因为之前你执行pod search生成了search_index.json,此时需要删掉。

终端输入:rm ~/Library/Caches/CocoaPods/search_index.json

删除成功后,再执行pod search。

pod search MobileKit

 

[!] An unexpected version directory `Classes` was encountered for the `/Users/zhangpeng/.cocoapods/repos/gitee-peter_zhang-mobilekit/MobileKit` Pod in the `MobileKit` repository.

$ cd /Users/zhangpeng/.cocoapods/repos/

$ ls

master   gitee-peter_zhang-mobilekit.   MobileKitSpec

删除多余的

 

 

 

 

转载于:https://www.cnblogs.com/PeterWolf/p/9304335.html

你可能感兴趣的文章
小算法
查看>>
201521123024 《java程序设计》 第12周学习总结
查看>>
新作《ASP.NET MVC 5框架揭秘》正式出版
查看>>
IdentityServer4-用EF配置Client(一)
查看>>
WPF中实现多选ComboBox控件
查看>>
读构建之法第四章第十七章有感
查看>>
Windows Phone开发(4):框架和页 转:http://blog.csdn.net/tcjiaan/article/details/7263146
查看>>
Unity3D研究院之打开Activity与调用JAVA代码传递参数(十八)【转】
查看>>
python asyncio 异步实现mongodb数据转xls文件
查看>>
TestNG入门
查看>>
【ul开发攻略】HTML5/CSS3菜单代码 阴影+发光+圆角
查看>>
IOS-图片操作集合
查看>>
IO—》Properties类&序列化流与反序列化流
查看>>
测试计划
查看>>
Mysql与Oracle 的对比
查看>>
jquery实现限制textarea输入字数
查看>>
Codeforces 719B Anatoly and Cockroaches
查看>>
jenkins常用插件汇总
查看>>
c# 泛型+反射
查看>>
第九章 前后查找
查看>>