I’ve included a placeholder [NSNull null] in my combobox datasource array so I can allow the user to select “none” without actually storing a blank object. The problem is that when a real object is added to the datasource array, I need to sort the array:
[self.mutableArrayOfStrings sortUsingSelector:@selector(caseInsensitiveCompare:)];
This line produces a SIGKILL.
I’ve got the same problem with the companion array of NSManagedObject, which also has a placeholder NSNull:
NSSortDescriptor *sortDescriptorName = [[NSSortDescriptor alloc] initWithKey:@“name” ascending:YES selector:@selector(caseInsensitiveCompare:)];
NSArray *sortDescriptorsNames = [[NSArray alloc] initWithObjects: sortDescriptorName, nil];
[self.mutableArrayOfMOs sortUsingDescriptors:sortDescriptorsNames];
If mutableArrayOfMOs contains an NSNull object, this line also produces a SIGKILL.
Of course, I could copy the non-null objects out to a separate array, sort it, re-insert the null object, and assign it to the array property — but that will clutter my code. Shouldn’t there be ways of sorting that don’t choke on NSNull? After all, Apple has provided NSNull explicitly to allow us to include it in arrays.