androidiosdebugging

iOS vs Android Debugging


In Android I set a break point in a function, press skip over, and then eventually I go to another function. In iOS, I set a break point in a function, press skip over, and I never get to the next function because it goes into something that looks like assembly code.

In iOS, is there a way to set a break point and go from one function to the next one that is called?


Solution

  • To skip over a function that has a breakpoint on it, you just need to run the code and when it stops, the debug area should have 4 options beside the view/hide debug area button visible.

    It will have:

    After choosing the step over button just click the play button on the DEBUG AREA (important) and your code will continue on it's way without the function call. Hopefully this helps you out a bit