In Xcode, if I have a for loop that either has a hardcoded limit (i.e. only goes up to 100), is it possible to jump to a specific iteration of the loop? For example, say I have the following loop:
for(int i = 0; i < 100; ++i) {
[someObject doSomething];
}
If I put a breakpoint before the for loop declaration line, can I somehow go to the 42nd iteration of the loop?
i == 50
which means it will stop the first time i
equals to 50
i
-Variable and change its value in the third field of the yellow pop-upIf you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With