Yeah, i saw/caught that... thanks!
one more thing... do you know how to create/init an array with a dynamically created reference/name?
i.e.:
NSMutableArray *["array"+i] = [[NSMutableArray alloc]init];
I need to create a new/unique array within my loop when ever i get to 16...
thanks!
Quote:
Originally Posted by TUX2K
Yes, that seems correct.
With one minor change:
Code:
if( i % 16 == 0)
{
}
= is assignment
== is compare.
My bad.
|