iPhone:如何在模拟器中调试时隐藏静态库的代码
我已经构建了一个静态库,我正在一个应用程序中使用它。静态库是为 iPhone 设备和模拟器构建的,并创建了通用库,
当我在应用程序中使用它时,一切运行良好。我可以在模拟器模式下使用逐行调试方法从应用程序调试库。
当调试 xcode 时显示我想在调试期间隐藏的库的代码。
有什么办法可以做到这一点吗?从库中删除代码的任何命令或方法。
提前致谢..
I have built a static library which I am using into one application. The static library is built for iPhone device and simulator and created universal library
When I used it in application everything works well. I could debug the library from application using line by line debug method in simulator mode.
While debug xcode is showing the code of the library which I want to hide during debug.
Is there any way to do this? Any command or method to remove code from library.
Thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该目标的构建设置中有一个
生成调试符号
。您需要将其设置为NO
。There's a
Generate Debug Symbols
in Build Settings of that target. You need to set it toNO
.