項(xiàng)目中的Podfile使用了內(nèi)嵌繼承這種方式:
target 'target-Online' do
inherit! :search_paths
# 公用的pods
shared_pods
# 繼承target-Online配置
target 'target-Offline' do
# other pods
end
end
然后發(fā)現(xiàn)target-Offline編譯無問題,target-Online編譯在鏈接時報(bào)找不到xxx framework。
通過對比發(fā)現(xiàn)只有search framework路徑有差別,切缺少了xxx framework所在目錄。然后注釋掉# inherit! :search_paths。以后重新pod install。問題解決。