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();
}
|
Very simple question - how might I iterate through a NSMutableArray and do things for each item? Much like the for loop in other langs:
|
||||
|
|
|
If you want to call a method in each one, use
or if you want to pass an argument,
|
|||||||||
|