Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

3 Answers

up vote 33 down vote accepted

Wanting this in a Cocoa app is often a sign of a weak design.

NSArray is immutable, so it will not "take a pointer to any object" and presumably already contains the correct objects when handed to you. What I assume you're more worried about is an NSMutableArray where you think other parts of your code might add the wrong sort of object. But have a look at Cocoa itself; it's incredibly rare to expose a mutable array as part of a class's design.

Instead, you generally expose an NSArray and a couple of methods for modifying that array. Something along the lines of:

@class Foo : NSObject
- (NSArray *)bars;
- (void)addBar:(Bar *)bar;
- (void)removeBar:(Bar *)bar;
@end

This generally stops wrong objects being inserted simply by having a compiler warning, and then of course you can add assertions within -addBar: and -removeBar: if you wish too.

share|improve this answer
   
Great answer. Thanks a lot. Just what I had in mind. – Holli Apr 28 '09 at 8:33
   
Also, if you need more advanced operations, read up on -mutableArrayValueForKey: – Mike Abdullah Apr 28 '09 at 18:06
7  
-1 Strongly Disagree - denying that adding C# generics to Objective C would – Paul Delhanty Jul 25 '12 at 7:12
7  
... be a definite improvement. Language support for strong typing and dynamic typing are complementary techniques. Prediction: Objective C will implement C# style generics one day. – Paul Delhanty Jul 25 '12 at 7:20
11  
Generics are not a weak design, wanting them is not a sign of weak design. They just happen not to apply to Objective-C. The rest of your answer is helpful, however the opening statement is completely incorrect and misleading. – Augmental Jul 26 '12 at 21:30
show 5 more comments

Objective-C doesn't support generic programming. You could always use Objective-C++ and an STL list.

share|improve this answer

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 id. This means that the types are checked at compilation time, but not enforced during runtime. In fact, there aren't any implementations provided - the standard Cocoa collections are used.

As an example, here's the code to create an NSArray subclass that only contains NSStrings:

WMGENERICARRAY_INTERFACE(NSString *, // type of the value class
                         // generated class names
                         WMStringArray, WMMutableStringArray)

Now, having the classes WMStringArray and WMMutableStringArray, what are they good for?

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.

compiler warnings

Property access

Where standard collections return id, the collections with specified type return objects of this type, enabling for example direct property access.

direct property access

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.

Xcode code creation

Code completion

When accessing values of a collection, the compiler will know the specified type and will provide much better code completion.

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 @[] and the fast enumeration object in a for loop.

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.

share|improve this answer
Thanks for posting your answer! Please be sure to read the FAQ on Self-Promotion carefully. Also note that it is required that you post a disclaimer every time you link to your own site/product. – Andrew Barber Mar 14 at 20:25
Thanks for pointing that out. I was quite unsure how to do this or whether it is considered too spammy. Right now I am busy but I will rework the answers according to the guidelines in a couple of hours. – w.m Mar 14 at 20:31
Excellent! Your last two answers are decent, because they seem to address the question, you've included some good information (not just "see this project here" and a feature list). Just add the disclosure, and they are just fine. thanks again! Oh, also; just FYI; do be careful about posting exact copies of answers; These seem to be good enough for their questions, but be sure to try to tailor answers to the question specifically. – Andrew Barber Mar 14 at 20:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.