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.
|
|
||||
|
|
|
Wanting this in a Cocoa app 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 |
|||||||||||||||||||||
|
|
Objective-C doesn't support generic programming. You could always use Objective-C++ and an STL list. |
|||
|
|
|
Have a look at WMGenericCollection (Disclaimer: this is my project). It is a template library that lets you create custom subclasses to the Cocoa containers, restricting them to a certain type. The created classes could be seen as just syntactic sugar. They are 1:1 redefinitions of the Cocoa headers, but with a fixed type instead of As an example, here's the code to create an NSArray subclass that only contains NSStrings:
Now, having the classes Compiler warnings When using collections with a specified value type, the compiler will issue a warning on all actions which assign objects of incompatible types.
Property access Where standard collections return
Automatic code creation Xcode automatically creates code for methods that take blocks as arguments. This code is created automatically for the specified type, not for id. This enables property access in the code block, and better code completion.
Code completion When accessing values of a collection, the compiler will know the specified type and will provide much better code completion.
Compatibility The custom subclasses are a drop in replacement for the standard Cocoa collection classes. Only the types of returned objects and arguments change - but none of the method names. Notes For nearly all methods of the Cocoa classes, type checks are performed at compilation time and will throw warnings if there is a mismatch. There are two exceptions: object creation (for example with But in my mind, all the other features are amazingly helpful and outweigh these two problems. Also, the type is checked when enumerating with blocks, which is a great alternative to for loops in many cases anyhow. For more details, see the project page at github. |
|||||||
|



