iOS pod 使用

1、安装什么的就不说了,网上一大堆。

2、cd到项目路径

3、vim Podfile  创建文件。

4、键盘i输入。

5、target '工程名' do

iOS pod 使用_第1张图片

platform :ios, '8.0'

def pods

    pod 'SDWebImage', '~> 4.0.0'

    pod 'SDAutoLayout', '~> 2.1.7'

    pod 'Masonry', '~> 1.0.2'

    pod 'LHPerformanceStatusBar', '~> 0.1.0'

end

target 'SVideo' do

    pods

end

6、OK搞定。

你可能感兴趣的:(iOS pod 使用)