使用CocoaPods更新第三方库出错的解决办法 执行完pod install或pod update之后,控制台抛出以下警告信息: [!] The xx [Debug] target overrides the PODS_ROOT build setting defined in Pods/Target Support Files/Pods-**/Pods-**.debug.xcconfig'. This can lead to problems with the CocoaPods insta…
VirtualBox 4.3.6上安装CentOS 6.5 https://my.oschina.net/tashi/blog/190060 错误1.Building the main Guest Additions module [FAILED] 安装的过程中,出现Building the main Guest Additions module[FAILED]错误,查看log文件是 /var/log/vboxadd-install.log /tmp/vbox.0/Makefile.includ…
上一篇说到cocoaPods的安装,本篇就来说说cocoaPods的使用和遇到一些问题的解决办法( ⊙ o ⊙ ) 一.cocoaPods的创建使用 1.cd进入所在的项目目录 2.创建Podfile文件 $ pod init 3.编辑Podfile文件 $sudo vi Podfile 4.导入框架 $ pod ‘框架名’ 可以指定版本号$ pod ‘框架名’,’~>版本号’,一般不指定版本号,默认用最近的 5.按esc,然后输入 :wq 保存 6.添加框架, $ pod install…