把老的xcode工程升级为cocoapod工程,先创建一个空的podfile
use_frameworks!:linkage => :static
inhibit_all_warnings! # 忽略引入库的所有警告
workspace 'all.xcworkspace'
target 'testXcode8' do
platform :ios, '8.0'
project 'testXcode8/testXcode8'
end
pod install
后,执行构建在链接阶段报错Framework not found Pods_testXcode8
尝试的解决过程就不赘述了,最后修改了一个八杆子打不着的BuidSetting解决的,将Build Active Architecture Only
由非默认值NO修改为默认值
未修改前
修改后