I am studying Objective-C and I came across this "for...in" statement. I searched for it but i still don't get how it works. Could someone so nice and explain to me in a noob-friendly how this statement works? Thanks a lot!

link|improve this question
1  
You mean behind the scenes, or how you use it? – Steven Fisher Sep 19 '11 at 19:56
You can find lots if you search for "fast enumeration objective c" – progrmr Sep 19 '11 at 20:28
feedback

1 Answer

See http://developer.apple.com/library/mac/documentation/cocoa/conceptual/ObjectiveC/Chapters/ocFastEnumeration.html

Basically you'd have, usually, an array, and you can obtain each item in the array with a handy loop instead of using NSEnumerator or an integer count variable. It makes your code much cleaner to ask for each NSString in your array rather than to have to assign to a variable using objectAtIndex for each pass of your loop.

Compare:

for (NSString *string in myArray)
{
    // do stuff...
}

To

for (int i = 0, i < [myArray count], i++)
{
    NSString *string = [myArray objectAtIndex:i];
    // Do stuff...
}
link|improve this answer
Besides being cleaner, it's also faster. There's a reason this is also called "fast enumeration". – zneak Sep 19 '11 at 20:12
Faster, safer, more fun... OK, maybe not the last one. – jrturton Sep 19 '11 at 20:17
Thank you very much! But I still don't understand what's the particular function of the "string" part. If I had other objects in the array besides strings how would this work? Would it still enumerate through all the objects or would it skip stuff that is not a string? – Augusto Dias Noronha Sep 19 '11 at 20:36
You can set the type as id instead, and check for the class of it inside the loop, if you think the array might contain multiple types of object. – jrturton Sep 19 '11 at 20:40
Thanks jrturton, I think I get it now :) – Augusto Dias Noronha Sep 19 '11 at 20:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.