I\'m a very new Cocoa user and running into all sorts of problems...
I\'m trying to get the content of an Array and found this code to do this.
<
In the Xcode menu hit Run - Console. This is where NSLog / print / printf etc statements output.
The key command is Command + Shift + R.
The cocoa toString() method is called description as well.
NSLog(@"array : %@",collection);
Will execute
NSLog(@"array : %@",[collection description]);
Which will then call description on each of the collections elements.