pod常用命令
Podfile文件用法详解
Podfile是一个规范,描述了一个或多个一套工程目标的依赖项
创建podfile文件
$ touch podfile
或者
$ pod init
搜索第三方
$ pod search xxxxxx
文件内代码
# 下面两行是指明依赖库的来源地址
source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/Artsy/Specs.git'
# 说明平台是ios,版本是9.0
platform :ios, '9.0'
# 忽略引入库的所有警告(强迫症者的福音啊)
inhibit_all_warnings!
target 'XXXX' do
use_frameworks!
pod 'SnapKit'
#可以为某一个库指定源
pod 'LCAlertPop’, :git => 'https://github.com/iRemark/LCAlertPop.git'
pod 'Alamofire'
target 'XXXXTests' do
inherit! :search_paths
pod 'OCMock', '~> 2.0.1'
end
end
# 这个是cocoapods的一些配置,官网并没有太详细的说明,一般采取默认就好了,也就是不写.
post_install do |installer|
installer.pods_project.targets.each do |target|
puts target.name
end
end