Xcode代码剥离不';不要去掉所有的符号

Xcode代码剥离不';不要去掉所有的符号,xcode,build,strip,Xcode,Build,Strip,在Xcode中构建项目(用于调试或归档)并指定带调试符号时: Strip Linked Product YES Strip Style ALL SYMBOLS Additional Strip Flags -S -x 我编译的应用程序中仍有不应该存在的项,例如: /Volumes/MacintoshHD/Users/John Smith/Xcode/Builds/Trial Application/Classes/Data+CommonConvert.m 如何

在Xcode中构建项目(用于调试或归档)并指定带调试符号时:

Strip Linked Product    YES
Strip Style             ALL SYMBOLS
Additional Strip Flags  -S -x
我编译的应用程序中仍有不应该存在的项,例如:

/Volumes/MacintoshHD/Users/John Smith/Xcode/Builds/Trial Application/Classes/Data+CommonConvert.m

如何指定在应用程序的构建阶段不保留该信息?

什么“项目”?这看起来不像一个函数名,而是一个文件路径……顺便说一句,您是否正在使用
assert()
或其他类似于遇到断言失败时打印文件路径的宏?因为在可执行文件中创建并存储了字符串文字…@H2CO3-不使用assert(),并且没有错误或失败。通过“items”,您是正确的-它显示了我构建后项目中我的类的文件路径。我不确定它为什么会这样做。请检查设置“部署后处理”