1.OC的项目通过Cocoapods引用Swift的项目,pod install时提示“Unable to determine Swift version for the following pods”.选中Build Setting 点击该加号 添加自定义设置文件,输入Swift Language Version, 选中合适的Swift版本。
2.Cocoapods私有库中使用到C++文件,头文件中引用了C++的标准库头文件如<string>,会提示File not found。解决方法如下:
podspec文件中的公开头文件地址s.public_header_files中不要包含C++的头文件。