On 13 Nov 2008, at 11:25, Florian Soenens wrote:
NSLog([[arrayController selectionIndexes] description]);
Not related to your problem, but this style of NSLog has a potential
pitfall if the description method were to return a string with any of
the supported formatting sequences in it. It would be expecting other
parameters to fill in the details.
The usual and simpler version would be:
NSLog(@"%@", [arrayController selectionIndexes]);
(The %@ get replaced by the result of the supplied object's
description method)
Matt Gough
_______________________________________________
Cocoa-dev mailing list ([email protected])
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com
This email sent to [EMAIL PROTECTED]