The Xcode project uses Cocoapods to manage third-party libraries when you create a new project, an exception occurs
Xcode project error when using Cocoapods to manage third-party libraries new project
The project uses Cocoapods to manage third-party libraries, and the following issues occur in the new Catalog update version
Question 1 describes:
diff:/.. /podfile.lock:no such file or directory diff:/manifest.lock:no such file or directory Error:the sandbox is not in sync With the Podfile.lock. Run ' pod install ' or update your CocoaPods installation.
Workaround:
Go to the Engineering catalog and re-pod install.
Running the project after the above steps may have the following error, due to the permissions of the current user.
Question 2 describes:
/users/wmm-mac/documents/program-svn/versions/code/iphone/generalproject/pods/pods-resources.sh:line 5:/Users/ Wmm-mac/documents/program-svn/versions/code/iphone/generalproject/pods/resources-to-copy-generalproject.txt: Permission denied
Pod does not have permissions:
If you don't have permissions, you can execute the following code
sudo chmod 777 Pods
Original address: http://www.educity.cn/wenda/86920.html
The Xcode project uses Cocoapods to manage third-party libraries when you create a new project, an exception occurs