多人开发出现 The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods install
出现这种原因是podfile中三方库或者自己的私有库依赖出现了问题或者pods版本原因
1.podfile.lock和Manifest.lock保留同一个PODFILE CHECKSUM
2.退出Xcode
3.rm -rf MyProject.xcworkspace (清空)
4.pod install重新建立依赖
5.打开Xcode执行clean
6.运行项目即可