iOS xcode9.3 pod 删除框架之后,clang报错:not found框架

环境:xcode9.3   pod

操作:删除podfile里不用的框架,从新pod install

错误:clang报错:not found框架   常见连接错误如下:

clang: error: linker command failed with exit code 1 (use -v to see invocation)  

原因分析:链接库的时候,配置文件并没有找到框架,所以加载的时候找不到库路径,然后报错。

解决办法:  other Linker flags 去掉删除的框架路径

bulid Setting -- other Linker flags

猜你喜欢

转载自blog.csdn.net/ZY_FlyWay/article/details/79992824