ios deployment target 由6.0改为7.0、7.1出现找不到c++库

原因 object c++ ios7.0/7.1不支持c++ 11,

解决办法:

 C++ Standard Library is set to libstdc++ (GNU c++ standard library) 

另一个问题:

c++库怎样加入ios工程中,不用.mm文件?

1.提供一个接口头文件只有不要有c++东西

2. other linker flags  : -lstdc++

原文地址:https://www.cnblogs.com/anjsxz/p/3790526.html