Re: Bindings to display an NSArray of NSStrings as a single NSString?
Re: Bindings to display an NSArray of NSStrings as a single NSString?
- Subject: Re: Bindings to display an NSArray of NSStrings as a single NSString?
- From: Erik Buck <email@hidden>
- Date: Tue, 5 Aug 2008 22:27:30 -0400
> You could add a category to NSArray...
>
> @implementation NSArray (ArrayOfStringsAsSingleString)
> - (NSString *)arrayOfStringsAsSingleString { return [self
> componentsJoinedByString:@", "]; }
> @end
>
> ...and then bind to "values.arrayOfStringsAsSingleString".
Um, why not just bind to "values.description" the -description method
of NSArray will return a string containing comma separated
descriptions of the contained objects. It will even work if the
contained objects aren't all strings.
_______________________________________________
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