上一篇说到cocoaPods的安装,本篇就来说说cocoaPods的使用和遇到一些问题的解决办法( ⊙ o ⊙ )一、cocoaPods的创建使用1、cd进入所在的项目目录2、创建Podfile文件$podinit3、编辑Podfile文件$sudoviPodfile4、导入框架$pod‘框架名’可...
分类:
其他好文 时间:
2016-01-02 12:16:38
阅读次数:
1973
在Podfile文件里加入pod 'EaseUI', :git => 'https://github.com/easemob/easeui-ios-cocoapods.git'然后在终端中的project目录下,pod update导入头文件 #import
分类:
移动开发 时间:
2015-12-30 13:30:37
阅读次数:
251
一、简单粗暴的消除警告警告如果是自己项目中的还好直接改了,如果是第三方库,你改了之后,pod下作者更新一下又白改了,所以可以用这种简单粗暴的方法:直接让第三方库的警告不显示就是在podfile文件里面加上一行指令 。1inhibit_all_warnings!如果某警告实在无法消除,但是又不想让他显...
分类:
移动开发 时间:
2015-12-21 15:49:41
阅读次数:
181
文档更新说明2012-12-02 v1.0 初稿2014-01-08 v1.1 增加设置 ruby 淘宝源相关内容2014-05-25 v2.0 增加国内 spec 镜像、使用私有 pod、podfile.lock、创建 spec 文件等内容2015-09-03 v2.1 优化排版,调整一些描述方式...
分类:
移动开发 时间:
2015-12-21 15:39:06
阅读次数:
234
[!] Your Podfile has had smart quotes sanitised. To avoid issues in the future, you should not use TextEdit for editing it. If you are not using TextE...
分类:
其他好文 时间:
2015-12-03 13:41:02
阅读次数:
566
问题描述:github下载的Demo,很多时候使用到CocoaPods,有的时候因为依赖关系或者版本问题不能编译运行。出现例如The sandbox is not sync with the Podfile.lock问题时候,如下所示diff: /../Podfile.lock: No such f...
分类:
移动开发 时间:
2015-11-16 12:18:23
阅读次数:
209
build diff: /../Podfile.lock: No such file or directory1、终端进入文件路径,执行pod install 2、在工程设置中的Build Phases下删除Check Pods Manifest.lock及Copy Pods Resources3....
分类:
其他好文 时间:
2015-11-11 16:27:07
阅读次数:
718
导入ReactiveCocoa框架在终端,进入Reactive Cocoa文件下创建podfile打开该文件并配置use_frameworks!pod ’ReactiveCocoa’, ’~>4.0.2-alpha-1'安装pod install --no-repo-update遇到头文件导入不进去...
分类:
其他好文 时间:
2015-11-07 00:57:09
阅读次数:
316
Podfile 文件如果要整合Pods, 先需要创建 个Podfile 件。xcode创 建 个新 程Pods-2保存到桌 。在终端cd到 程的根 录。 例如下:lifan:~ apple$ cd /Users/apple/Desktop/Test_AFNetworkinglifan:Test_AF...
分类:
移动开发 时间:
2015-11-05 00:43:58
阅读次数:
199
//处理不可逆的push界面操作VerifyRealNameViewController *verifyRealNameCtrl = [VerifyRealNameViewController viewControllerWithStoryBoard:@"Registe" identify:@"Ve...
分类:
其他好文 时间:
2015-10-27 15:20:42
阅读次数:
273