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