1
我剛將一個私人吊艙推到my.domain.com:apps/MyPrivatePod.git
。我想在我的項目中使用這個專用吊艙和其他公共吊艙在同一個項目中使用私人吊艙和公共吊艙
platform :ios, '8.0'
target 'Testing' do
pod 'AFNetworking', '2.6.0 ' // This is supposed to be a public Pod
pod 'MyPrivatePod', '~> 1.1' // This is the private pod I talked about
end
我該如何實現這一目標?
@ 7ball讓我知道如果這能解決你的問題 –