CocoaPods匯入第三方框架

fudanstar發表於2016-06-02

在使用CocoaPods匯入第三方框架時,修改Podfile檔案之後,執行pod install,終端會提示:

The dependency `AFNetworking (~> 3.1.0)` is not used in any concrete target.

參考解決方法
文中提出了一種醜的解決方法和一種優雅的解決方法:
前一種方法:

# Podfile

platform :ios, '9.0'

use_frameworks!

# My other pods

target 'MyTests' do
    pod 'Quick', '0.5.0'
    pod 'Nimble', '2.0.0-rc.1'
end

target 'MyUITests' do
    pod 'Quick', '0.5.0'
    pod 'Nimble', '2.0.0-rc.1'
end

即在前面加上target。
後一種方法:

# Podfile

platform :ios, '9.0'

use_frameworks!

# My other pods

def testing_pods
    pod 'Quick', '0.5.0'
    pod 'Nimble', '2.0.0-rc.1'
end

target 'MyTests' do
    testing_pods
end

target 'MyUITests' do
    testing_pods
end

這種方法更加規範和便於維護

當使用單元測試時,發現用cocoaPods載入的第三方庫無法import時,記得在pod的Podfile檔案中加上:

target 'MyTests' do
...
end

相關文章