1,官网下载安装ruby
Mac直接在shell输入下载安装:
$ brew install ruby
若提示-bash: brew: command not found。
安装homebrew:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
1>、安装rvm
RVM:Ruby Version Manager, Ruby版本管理器,包括Ruby的版本管理和Gem库管理(gemset)
$ curl -L get.rvm.io | bash -s stable
2>、加载文件,测试是否安装正常(按照提示操作)
$ source ~/.bashrc
$ source ~/.bash_profile
$ source ~/.profile
$ rvm -v
3>、获取rvm列表,找到最新版本,安装
$ rvm list known
4>、安装ruby2.4
$ rvm install 2.4
安装过程中可能遇到如下错误:
Error running 'requirements_osx_port_libs_install curl-ca-bundle automake libtool libyaml libffi libksba',showing last 15 lines of /Users/acewill/.rvm/log/1468253599_ruby-2.3.0/package_install_curl-ca-bundle_automake_libtool_libyaml_libffi_libksba.log
原因是需要安装Homebrew, 参照stack overflow上的问题Installing RVM: “Requirements installation failed with status: 1.”
安装Homebrew, 通过以下命令:
$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
安装完Homebrew,重新安装ruby
$ rvm install 2.4
2、设置ruby的软件源
$ gem sources -l #(查看当前ruby的源)
$ gem sources --remove https://rubygems.org/ #(移除当前ruby的源)
$ gem sources -a https://gems.ruby-china.org/ #(设置当前ruby的源,淘宝镜像已经不能用了,可以用https://gems.ruby-china.org)
$ gem sources -l #(再次查看当前ruby的源)
如果Terminal输出:
*** CURRENT SOURCES ***
https://gems.ruby-china.org/
表示切换成功
3、设置gem为最新版本
如果gem太老,可以尝试用如下命令升级gem:
$ gem update --system
升级成功后会提示: Latest version currently installed. Aborting.
如果出现
ERROR: While executing gem ... (OpenSSL::SSL::SSLError)
hostname "upyun.gems.ruby-china.org" does not match the server certificate
原因是之前用的ruby镜像源是淘宝的,需要切换成https://gems.ruby-china.org/,在终端输入
$ gem sources —remove https://ruby.taobao.org/
$ gem sources -a https://gems.ruby-china.org/
二。安装cocoapods
1,在终端输入命令
$sudo gem install cocoapods
2,pod search 第三方框架
$ pod search AFNetworking
按wq退出
如果出现 [!] Unable to find a pod with name, author, summary, or description matching AFNetworking
执行下面操作,删除索引
$ rm ~/Library/Caches/CocoaPods/search_index.json
然后重新执行
$ pod search AFNetworking
3,项目中添加cocoapods:
1>需要在工程中根目录,工程下面创建一个名字为Podfile的Empty文件
文件输入
platform :ios, '8.0'
#use_frameworks!//个别需要用到它,比如reactiveCocoa
target 'WoVPNStore' do
pod 'AFNetworking', '~> 3.1.0'
pod 'JSONModel', '~> 1.3.0'
pod 'SDWebImage', '~> 3.8.1'
pod 'Masonry', '~> 1.0.1'
pod 'Reachability', '~> 3.2'
pod 'MJRefresh', '~> 3.1.12'
end
按这种格式输入不会报下面这种错误:
还有一种写法:
platform :ios, '8.0'
#use_frameworks!个别需要用到它,比如reactiveCocoa
def pods
pod 'AFNetworking', '~> 2.6'
pod 'ORStackView', '~> 3.0'
pod 'SwiftyJSON', '~> 2.3'
end
target 'MyApp' do
pods
end
之后关闭工程,打开终端,cd进入工程目录,到有pod文件的那层。
$ pod install
即可,然后再次打开工程,打开.xcworkspace文件即可。
扩展在自己开源项目中使用cocoapods:
http://www.jianshu.com/p/0e1d796b2a42
三。PrefixHeader.pch的使用:
1,新建pch文件,名字就是prefixHeader.pch
2,打开工程设置,building setting 搜索PrefixHeader,修改配置
根路径:$(SRCROOT)/工程名/PrefixHeader.pch 比如:$(SRCROOT)/新闻APP/PrefixHeader.pch 注意不能打错字母。
里面基本都是定义宏文件。