Re: IKImageBrowserView with NSArrayController bindings
Re: IKImageBrowserView with NSArrayController bindings
- Subject: Re: IKImageBrowserView with NSArrayController bindings
- From: Matt Gough <email@hidden>
- Date: Thu, 13 Nov 2008 11:58:28 +0100
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@hidden)
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:
This email sent to email@hidden