please help me I want to sort NSMutableArray and yes I can do this by
NSSortDescriptor *sortPoint = [[NSSortDescriptor alloc] initWithKey:@"point" ascending:YES];
[hightScore sortUsingDescriptors:[NSArray arrayWithObject:sortPoint]];
but in NSMuatableArray(hightScore), I have 2 NSMutableDictionary like this
[item setObject:@"player_name" forKey:@"name"];
[item setObject:@"100" forKey:@"point"];
and when I sort by keyword "point" that is string it give me like this 100 > 20 > 30 > 50 instead should be 20 > 30 > 50 > 100
have any idea pleassss.