I was trying to use a multiple value in a for loop. if I create two separate for loops, the code is repeated twice, so I tried this:
for ((NSString* Key in [Dictionary allKeys]) && (NSString* Key2 in [Dictionary allValues])){
But no way!! How can I do it??
First of all, variable names should start with a lower case letter.
Do you know the “usual” form of a for loop? The one you’re using is just a short cut for this:
So in your case, you could write