Can I make an NSMutableArray where all the elements are of type SomeClass?

link|improve this question

feedback

4 Answers

up vote 20 down vote accepted

You could make a category with an -addSomeClass: method to allow compile-time static type checking (so the compiler could let you know if you try to add an object it knows is a different class through that method), but there's no real way to enforce that an array only contains objects of a given class.

In general, there doesn't seem to be a need for such a constraint in Objective-C. I don't think I've ever heard an experienced Cocoa programmer wish for that feature. The only people who seem to are programmers from other languages who are still thinking in those languages. If you only want objects of a given class in an array, only stick objects of that class in there. If you want to test that your code is behaving properly, test it.

link|improve this answer
21  
I think that 'experienced Cocoa programmers' just don't know what they're missing -- experience with Java shows that type variables improve code comprehension and make more refactorings possible. – tgdavies Nov 4 '10 at 16:52
Well, Java's Generics support is heavily broken in it's own right, because they didn't put it in from the start... – dertoni Dec 8 '10 at 7:38
5  
Gotta agree with @tgdavies. I miss the intellisense and refactoring capabilities I had with C#. When I want dynamic typing I can get it in C# 4.0. When I want strongly types stuff I can have that too. I've found there is a time and place for both of those things. – Steve Jun 27 '11 at 4:34
4  
@charkrit What is it about Objective-C that makes it 'not necessary'? Did you feel it was necessary when you were using C#? I hear a lot of people saying you don't need it in Objective-C but I think these same people think you don't need it in any language, which makes it an issue of preference/style, not of necessity. – bacar Jan 30 at 22:21
1  
@bacar: You can't cast unless you know the type of the receiver. My point is, Objective-C accesses everything through pointers that can be converted to any other type without complaint from the compiler. It is not a typesafe langauge. Generics would give you a little bit more type safety, but in a language as pervasively dynamic as Objective-C, it's a drop in the pond. The only other languages with dynamic typing as pervasive as Objective-C's don't have static type systems at all — JavaScript, Python, Ruby, etc. Neither Java nor C# was born with an id type — generics are their equivalent. – Chuck Apr 10 at 18:07
show 5 more comments
feedback

This is a relatively common question for people transitioning from strongly type languages (like C++ or Java) to more weakly or dynamically typed languages like Python, Ruby, or Objective-C. In Objective-C, most objects inherit from NSObject (type id) (the rest inherit from an other root class such as NSProxy and can also be type id), and any message can be sent to any object. Of course, sending a message to an instance that it does not recognize may cause a runtime error (and will also cause a compiler warning with appropriate -W flags). As long as an instance responds to the message you send, you may not care what class it belongs to. This is often referred to as "duck typing" because "if it quacks like duck [i.e. responds to a selector], it is a duck [i.e. it can handle the message; who cares what class it is]".

You can test whether an instance responds to a selector at run time with the -(BOOL)respondsToSelector:(SEL)selector method. Assuming you want to call a method on every instance in an array but aren't sure that all instances can handle the message (so you can't just use NSArray's -[NSArray makeObjectsPerformSelector:], something like this would work:

for(id o in myArray) {
  if([o respondsToSelector:@selector(myMethod)]) {
    [o myMethod];
  }
}

If you control the source code for the instances which implement the method(s) you wish to call, the more common approach would be to define a @protocol that contains those methods and declare that the classes in question implement that protocol in their declaration. In this usage, a @protocol is analogous to a Java Interface or a C++ abstract base class. You can then test for conformance to the entire protocol rather than response to each method. In the previous example, it wouldn't make much difference, but if you were calling multiple methods, it might simplify things. The example would then be:

for(id o in myArray) {
  if([o conformsToProtocol:@protocol(MyProtocol)]) {
    [o myMethod];
  }
}

assuming MyProtocol declares myMethod. This second approach is favored because it clarifies the intent of the code more than the first.

Often, one of these approaches frees you from caring whether all objects in an array are of a given type. If you still do care, the standard dynamic language approach is to unit test, unit test, unit test. Because a regression in this requirement will produce a (likely unrecoverable) runtime (not compile time) error, you need to have test coverage to verify the behavior so that you don't release a crasher into the wild. In this case, peform an operation that modifies the array, then verify that all instances in the array belong to a given class. With proper test coverage, you don't even need the added runtime overhead of verifying instance identity. You do have good unit test coverage, don't you?

link|improve this answer
feedback

A possible way could be subclassing NSArray but Apple recommends not to do it. It is simpler to think twice of the actual need for a typed NSArray.

link|improve this answer
feedback

You could subclass NSMutableArray to enforce type safety.

NSMutableArray is a class cluster, so subclassing isn't trivial. I ended up inheriting from NSArray and forwarded invocations to an array inside that class. The result is a class called ConcreteMutableArray which is easy to subclass. Here's what I came up with:

Include those files in your project, then generate any types you wish by using macros:

MyArrayTypes.h

CUSTOM_ARRAY_INTERFACE(NSString)
CUSTOM_ARRAY_INTERFACE(User)

MyArrayTypes.m

CUSTOM_ARRAY_IMPLEMENTATION(NSString)
CUSTOM_ARRAY_IMPLEMENTATION(User)

Usage:

NSStringArray* strings = [NSStringArray array];
[strings add:@"Hello"];
NSString* str = [strings get:0];

[strings add:[User new]];  //compiler error
User* user = [strings get:0];  //compiler error

Other Thoughts

  • It inherits from NSArray to support serialization/deserialization
  • Depending on your taste, you may want to override/hide generic methods like

    - (void) addObject:(id)anObject

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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