我已经使用Objective-C开发了一个iOS应用程序,该应用程序使用文本文件转换为zip。我最初尝试使用SSZipArchive并将SSZipArchive添加到项目目录。后来,我更改为Objective-zip,它可以正常工作。而且我也从目录中删除了SSZipArchive文件夹。但是,当我尝试构建应用程序时,出现错误“错误:/ Users / maneesh-3919 / Documents / git1 / mdmiosapp / support / SSZipArchive:无此类文件或目录”。项目,但没有发现任何事件。引发的确切错误是
CpResource support/SSZipArchive /Users/maneesh-3919/Library/Developer/Xcode/DerivedData/Build/Products/Debug-iphonesimulator/mdmiosagent.app/SSZipArchive
cd /Users/maneesh-3919/Documents/git1/mdmiosapp
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/maneesh-3919/Documents/git1/mdmiosapp/support/SSZipArchive /Users/maneesh-3919/Library/Developer/Xcode/DerivedData/Build/Products/Debug-iphonesimulator/mdmiosagent.app
error: /Users/maneesh-3919/Documents/git1/mdmiosapp/support/SSZipArchive: No such file or directory
因此,请协助我完全删除SSZipArchive。先感谢您。
最佳答案
请尝试以下步骤:
1. Click on your project in Xcode.
2. For your target, open the build phases tab.
3. Open "Copy Bundle Resources"
4. Look for any resources listed in red (SSZipArchive)
5. Remove.
建议:您应该更喜欢使用Cocoapods进行依赖。它处理一切。