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.
我的项目中有一个框架。
我最近获得了 git 访问代码的权限。有什么方法可以将源链接到该框架,所以当我单步执行断点时,它会显示代码而不是汇编指令?
我想这样做而不必重建框架。
你有两个选择:
1)克隆项目,并将框架项目添加到您的项目中。
2) 确保基础项目在构建时启用了“带有 dSYM 文件的 DWARF”,未从二进制文件中删除符号,并且 dSYM 文件保存在包含的框架中。
我的猜测是原作者没有做第二个选项,所以你的选项是第一个。