I have two for loops nested like this:
for(...) { for(...) { } }
I know that there is a break statement. But I am con
break
Other than the already mentioned flag variable or goto you could throw an Objective-C exception:
@try { for() { for() { @throw ... } } } @catch{ ... }