iPhone : How to hide code of static library while debug in simultor
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 开发者_如何学JAVAor method to remove code from library.
Thanks in advance..
There's a Generate Debug Symbols
in Build Settings of that target. You need to set it to NO
.
精彩评论