Forgive me for a potentially silly question here, but in other programming languages (scripting ones like PHP or Perl) it is often easy to dump everything contained within a
I usualy go with this to "debug" NSArray contents:
NSEnumerator *arrenum = [myarray objectEnumerator];
id cobj;
while ( cobj = [arrenum nextObject] ) {
NSLog(@"%@", cobj);
}
The code will enumerate all objects in the NSArray myarray, and then iterate through and print every object.
Hope this can be useful for someone!