What I really like in C# are generic lists. A list that can contain only one type of objects. Is there something like a generic list in Cocoa/Objective-C? As far I only know NSArray who will take a pointer to any object.
|
feedback
|
|
Wanting this is often a sign of a weak design. Instead, you generally expose an
This generally stops wrong objects being inserted simply by having a compiler warning, and then of course you can add assertions within | |||||
feedback
|
|
Objective-C doesn't support generic programming. You could always use Objective-C++ and an STL list. | |||
|
feedback
|