Re: NSArrayController: Objects with empty strings

2009-04-28 Thread Keary Suska
On Apr 28, 2009, at 1:39 PM, Alexander Spohr wrote: Am 28.04.2009 um 21:22 schrieb Keary Suska: NSMutableDictionary *theDicRow = [NSMutableDictionary dictionaryWithObjectsAndKeys: @"Text A", @"colA", @"", @"colB", nil ]; I am not surprised to see this behavior, for va

Re: NSArrayController: Objects with empty strings

2009-04-28 Thread Greg Guerin
MyApps wrote: But I wanna have the empty string back. So it seems, that the empty string is converted to nill and the controller is killing them out. This works fine for me. CODE: NSMutableDictionary* dict = [NSMutableDictionary dictionaryWithObjectsAndKeys: @"Text A", @"colA",

Re: NSArrayController: Objects with empty strings

2009-04-28 Thread Keary Suska
On Apr 28, 2009, at 8:59 AM, MyApps wrote: First off, a suggestion: please don't delimit code sections like you do. In fact, you don't need any delimiters other than whitespace (as you can see with the edited text below). And you can see, it is just as readable, and, IMHO, it is actually *m

NSArrayController: Objects with empty strings

2009-04-28 Thread MyApps
Hi list, I am new to the cocoa development. I have some question to NSArrayController I add an object to the controller array like this: CODE ## NSMutableDictionary *theDicRow = [NSMutableDictionary dictionaryW