pod 指定库版本

pod 'JLRoutes'                 //每次都获取最新版本
pod 'JLRoutes', '~>0'          //高于0的版本

pod 'JLRoutes', '~> 0.1.2'     //使用大于等于0.1.2但小于0.2的版本
pod 'JLRoutes', '~>0.1'        //使用大于等于0.1但小于1.0的版本一个效果,都表示使用最新版本

pod 'JLRoutes', '2.0'          //只使用2.0版本
pod 'JLRoutes', '= 2.0'        //只使用2.0版本

pod 'JLRoutes', '> 2.0'        //使用高于2.0的版本
pod 'JLRoutes', '>= 2.0'       //使用大于或等于2.0的版本
pod 'JLRoutes', '< 2.0'        //使用小于2.0的版本
pod 'JLRoutes', '<= 2.0'       //使用小于或等于2.0的版本

pod 'JLRoutes', :git => 'http://gitlab.xxxx.com/JLRoutes.git', :branch => 'R20161010'  //指定分支 

pod 'MyLib',  :path => '../MyLib'  //指定本地库 与当前工程的相对位置

你可能感兴趣的:(pod 指定库版本)