一般是因为导入新项目的时候报错的。原因是引入的依赖库的问题。重新执行pod install应该可以解决。不过,有时候如果重新执行pod install无法执行,可以采用以下方法:
在终端中cd到项目所在目录,然后执行以下命令:
pod deintegrate // removes all pod related configurations from your project
rm Podfile.lock //removes the saved reference to the pods
pod install // reinstalls the pods