swift2升级swift3使用Pops管理第三方库报错ld: framework not found

1.pod install后终端里会有如下警告



问题解决:

1.通过上面警告可知在下图位置添加$(inherited)

2.删除如下图文件重新pod install

3.修改好的工程运行不报错,但将工程拷贝到其它文件夹报错ld: framework not found找不到某个第三方库,网上方法各种试没解决,因为错误不在这,忽略了造成报错的because its architectures 'arm64' didn't contain all required architectures 'armv7 arm64'这个警告

 原因是cocoapods下依赖

只要把Build Settings下的 Build Active Architecture Only  设置为YES就可以了

你可能感兴趣的:(swift2升级swift3使用Pops管理第三方库报错ld: framework not found)