Working on an iOS App I’m using an static library integrated as a submodule. No problem, but when I want to step into a method of this submodule while debugging the debugger just step over that method call.
I guess it’s related to the Build settings but I don’t have any idea.
Thanks for your help!
kober
You cannot step into the library code unless you have source code for it.
This is the purpose of libs, if you make your own you may want to prevent others to look how its built. If you want to check library function correctness you have two ways:
If you do have the source code for the lib you have to set its build to debug mode, so you can provide symbols for Xcode to get through library’s methods.