您的位置:首页 > 其它

Podfile 简单使用

2017-03-14 21:44 232 查看
1. 引用本地pod

platform :ios, '8.0'

use_frameworks!

target 'Test' do

    pod 'MJK', :path => '../'

end

2. 引用git

platform :ios, '8.0'

use_frameworks!

target 'Test' do

    pod 'MJK', :git => 'https://xxx.git',  :tag => '1.0.0'

end

3. 引用发到CocoaPods上的

platform :ios, '8.0'

use_frameworks!

target 'Test' do

    pod 'MJK',  ‘1.0.0’

end
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: