Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Very simple question - how might I iterate through a NSMutableArray and do things for each item?

Much like the for loop in other langs:

foreach(array)
{
    dosomething();
}
share|improve this question

1 Answer

up vote 17 down vote accepted

If you want to call a method in each one, use

[array makeObjectsPerformSelector:@selector(eatFish)];

or if you want to pass an argument,

[array makeObjectsPerformSelector:@selector(eat:) withObject:myFishObject];
share|improve this answer
1  
+1 for a functional approach. – Jakob Borg Aug 26 '10 at 19:05
+1 for a stylistically better way than a for loop. – Jonathan Grynspan Aug 26 '10 at 19:58
+1 Kalle to the rescue! ;) – Jordan Aug 26 '10 at 21:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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