什么是 IPA 中的 .symbol 文件

What is .symbol files in IPA

我有上传到 AppStore 的 IPA。在解压缩 IPA 时,我看到两个文件夹 有效载荷和符号。

Symbols 文件夹包含许多扩展名为 .symbol 的文件

知道这些符号文件是什么吗?我们可以将它们用于符号化吗?

是的,是debug symbols. They contain a mapping between encoded names and locations in your compiled code and the original function names among other debug information. Each <UUID>.symbols file represents either the main binary of you app or a framework that your app is using. You can find out which is which using mdfind (see example)。

See this about symbolication