运行没有问题,但是打包上传的时候出问题
报错
Command SwiftCompile failed with a nonzero exit code
解决:
方式一(来自网络)
Xcode15.3 新建项目后 使用cocoapods,pod引入第三方库后报Command SwiftCompile failed with a nonzero exit code 的错误
解决方法 Target - build setting - 搜索sandbox - 把user script sandboxing 设置为 NO , command + K 清理后 重新编译 问题解决
方式二:(来自网络)
https://blog.csdn.net/jingbin_/article/details/139687883
方式三:(最靠谱)
点击项目栏pod 在 TARGETS中选择HandyJSON 在build settings
Swift Compiler - Code Generation 中找到 Compilation Mode
debug和release都设置为 Incremental 如图:
47081724751850_.pic.jpg
网友评论