CocoaPods
fucuiping_1314
这个作者很懒,什么都没留下…
展开
-
CocoaPods报错:The sandbox is not in sync with the Podfile.lock...
当我们从github下一些demo,如果笔者添加CocoaPods管理,有时候因为依赖关系或者版本问题不能编译,很有可能下载到我们本地报错。报错提示如下: diff: /../Podfile.lock: No such file or directory diff: /Manifest.lock: No such file or directory error:原创 2016-07-29 09:44:21 · 11246 阅读 · 0 评论 -
CocoaPods报错:The dependency '三方框架Name' is not used in any concrete target
我目前用的是当cocoapods升级后,Podfile文件的内容格式要求发生了变化,安装第三方库的时候,必须指出所用第三方库的target。不然会报以下错误。原创 2016-07-28 16:33:22 · 1614 阅读 · 0 评论 -
CocoaPods的安装和使用
CocoaPods的安装和使用也有很多博客了,写这篇文章目的就是做个笔记,省得每次用到都得百度命令! 第一步:Ruby环境安装 (1)升级Ruby环境 命令:sudo gem update --system (2)移除现有Ruby默认源 命令:gem sources --remove https://rubygems.org/ (3)使用淘宝的Rub...原创 2016-07-29 15:13:05 · 262 阅读 · 0 评论 -
CocoaPods报错:[!] Unable to find a specification for xxxx
问题:当pod install或update 会出现 [!] Unable to find a specification for xxxx 解决问题:把当前Pod目录清理一下就OK第一步:pod repo remove master第二步:pod setup(需要等待。。。) 以上命令执行成功,执行第三步:pod install或 pod update原创 2017-10-12 11:15:17 · 763 阅读 · 0 评论