i've stored colors in a dictionary which is added to a nsmutable array.i want to retrieve values of the dictionary from another class based on the keys.thanks in advance
-(NSMutableArray *) GetAllColor
{
UIColor *aminocolor1 = [UIColor colorWithRed:.09 green:.56 blue:.30 alpha:.1];
UIColor *aminocolor2 = [UIColor colorWithRed:1 green:1 blue:1 alpha:.1];
NSDictionary *colordict = [NSDictionary dictionaryWithObjectsAndKeys:
aminocolor1, @"1",
aminocolor2, @"2",
nil];
NSMutableArray *colors = [NSMutableArray arrayWithObjects:colordict, nil];
return colors;
}