When Loading all key's value of NSDictionary
into NSArray class.
its incompletely and jumbling (randomly) loading key value of dictionary into NSArray class
- (id)initWithCoder:(NSCoder *)coder
{
self = [super initWithCoder:coder];
if (self) {
//do sth
colorNameList = [[ColorModelClass colorListNames]allKeys];
}
return self;
}
Issue is: i expect all key load from dictionary into array in sequentially not randomly with out missing any key's