I have two for loops nested like this:
for(...) { for(...) { } }
I know that there is a break statement. But I am con
break
Just for grins, how about changing this true/false check into a method and using return statements:
return
- (bool) checkTrueFalse: parameters{ for ( ...) { for ( ... ) { if (...) { return true; } } } return false; }