I have some set of Groups like Color,accessorie,Place, under which they have different data like color has Red, blue, pink etc and so on for other group.
So what should i do ? should i create NSSet or NSArray
to keep data, like i did below or Any other good way to do it
For example,
NSSet *color = [NSSet setWithObjects:@"Red", @"Blue", @"Pink"];
NSSet *accessorie = [NSSet setWithObjects:@"Bat", @"Ball", @"Football"];
NSSet *place = [NSSet setWithObjects:@"chicago", @"Sydney", @"Lasvaegas"]
;
Let me know if question is clear Help Appreciated and Thanks in advance :)