@interface Restaurant : NSObject
{
}
@property (nonatomic, copy) NSString* name;
@end
// Some other code where restaurantList is a mutable array of Restaurant objects
NSSortDescriptor* d = [NSSortDescriptor sortDescriptorWithKey:@"name" ascending:YES selector:@selector(caseInsensitiveCompare:)];
[restaurantList sortUsingDescriptors:[NSArray arrayWithObject:d]];