Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS SDK standard collections

I'm new to objective-c. I can't find such classed as NSStack, NSList and so on. But i need containers to write the application. The only containers i've found are NSArray and NSMutableArray. I know that i can use STL containers, but i'm not sure it's the best way.

like image 478
Andrew Avatar asked Oct 19 '10 12:10

Andrew


1 Answers

For lists, you can use NSArray, NSMutableArray. For dictionary/hashmap, you can use NSDictionary, NSHashMap. For sets, you can use NSSet, NSMutableSet.

Here's Apple documentation on collections.

As you previously mentioned, you can also use C or C++ standard libraries, but do keep in mind that for storing Objective-C classes, it will be more convenient to use Objective-C native collections.

like image 62
Pablo Santa Cruz Avatar answered Sep 29 '22 06:09

Pablo Santa Cruz