I have a CoreData iphone application with a view that display addresses.
An address looks like this: "5 Blob Street, 2222, Suburbia", where "5 Blob Street" is the address_and_number key, "2222" the post code, and "Suburbia" the suburb.
Currently I use this NSSortDescriptor, which works fine:
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc]
initWithKey:@"address_and_number" ascending:YES];
However, my client wants to sort by street name, i.e. out of the address_and_number key, "Blob Street" would be evaluated.
Is there any way to do such sorting without resorting to splitting the address_and_number key into two keys, "address" and "number"?
Can I use perhaps a regular expression to grab only the part of the address_and_number key I need for sorting, and somehow add that to the NSSortDescriptor object?
Try adding a NSComparator block to the initialization of the NSSortDescriptor like this: