I looked for how to dump and array to the console I have mostly found:
for (id name in arrayStuff)
NSLog (@"Array contents: %d", name);
I've tried different formaters %d %@ %g etc. which does print different stuff, but not the values I'm 99% sure are being entered into the object and consequently the array. This doesn't seem to work, how would you know what to use as the formater?
I have an NSMutableArray with instance of an object containing one int and two doubles added to the array in each loop. I would like to print those values out and make sure the correct ones are going in. Any ideas?
Thanks