Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an array populated by dictionaries, I need to sort my array alfabetically by the key of the inner dictionary

this is my array:

tu dictus: (
    {
    brand = Ryul;
    productTitle = Any;
    quantity = 1;
    subBrand = "Ryul INJ";
    type = Product;
},
    {
    brand = Trol;
    productTitle = Different;
    quantity = 2;
    subBrand = "";
    type = Brand;
},
    {
    brand = Dtor;
    productTitle = Any;
    quantity = 1;
    subBrand = "";
    type = Product;
},
    {
    brand = Ryul;
    productTitle = Different;
    quantity = 2;
    subBrand = "Ryul CHES";
    type = SubBrand;
},
    {
    brand = Anan;
    productTitle = Any;
    quantity = 1;
    subBrand = "";
    type = Product;
}

)

so normally for sorting an array i will use,

myArray = [uniqueProdsArray sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)];

but how will i go to sorted with the key :: brandof the dictionary?

thanks!

share|improve this question

4 Answers

up vote 11 down vote accepted

I think this will do it:

brandDescriptor = [[[NSSortDescriptor alloc] initWithKey:@"brand" ascending:YES] autorelease];
sortDescriptors = [NSArray arrayWithObject:brandDescriptor];
sortedArray = [myArray sortedArrayUsingDescriptors:sortDescriptors];

I pulled the code from Sort Descriptor Programming Topics. Also, Key-Value Coding comes into play, in that sortedArrayUsingDescriptors: will send a valueForKey: to each element in myArray, and then use standard comparators to sort the returned values.

share|improve this answer

In IOS 5 aur upgraded version NSSortDescriptor object is the best way for sorting an array. This will be done in this way:-

NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"brand" ascending:YES];

NSArray *sortDescriptors = [NSArray arrayWithObject:sortDescriptor];

NSArray *sortedArray = [myArray sortedArrayUsingDescriptors:sortDescriptors];

myArray =[NSMutableArray arrayWithArray:sortedArray];
share|improve this answer
     Just try it out easiest way...

      myArray = [[NSMutableArray alloc] init];
       NSMutableArray *tempArray = [[NSMutableArray alloc] init];
      [tempArray removeAllObjects];
      [tempArray addObjectsFromArray: myArray];

        NSString *key = @"brand";
        NSSortDescriptor *brandDescriptor = [[NSSortDescriptor alloc] initWithKey:key ascending:YES];
        NSArray *sortDescriptors = [NSArray arrayWithObjects:brandDescriptor,nil];
        NSArray *sortedArray = [tempArray sortedArrayUsingDescriptors:sortDescriptors];
        [brandDescriptor release];
        [tempArray removeAllObjects];
        tempArray = (NSMutableArray*)sortedArray;
        [myArray removeAllObjects];
        [myArray addObjectsFromArray:tempArray];
share|improve this answer

you can do this .

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
        [formatter setDateFormat:@"d LLLL yyyy"];

        NSComparator compareDates = ^(id string1, id string2)
        {
            NSDate *date1 = [formatter dateFromString:string1];
            NSDate *date2 = [formatter dateFromString:string2];

            return [date1 compare:date2];
        };
        NSSortDescriptor * sortDesc1 = [[NSSortDescriptor alloc] initWithKey:@"date" ascending:NO comparator:compareDates];
        [array sortUsingDescriptors:[NSArray arrayWithObjects:sortDesc1, nil]];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.