Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我读到 IOS 应用程序的符号列表在 .dSYM 中。我想查看整个符号列表,你们知道我需要使用什么工具从这个包中提取这些信息吗?
谢谢
-玛莲娜
您可以使用dwarfdump。
例如,要查看 ARM64 架构的 dSYM 文件中的所有公共类型,请运行:
dwarfdump --arch arm64 --debug-pubtypes YourFramework.framework.dSYM/
有关更多信息,请查看 dwarfdump 的手册页。使用此命令,您还可以提取字符串、按名称和地址过滤等等。