Can I make an NSMutableArray where all the elements are of type SomeClass?
|
feedback
|
|
You could make a category with an 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. | |||||||||||||||||||
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 You can test whether an instance responds to a selector at run time with the
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
assuming 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? | ||||
|
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. | |||
|
feedback
|
|
You could subclass
Include those files in your project, then generate any types you wish by using macros: MyArrayTypes.h
MyArrayTypes.m
Usage:
Other Thoughts
| ||||
|
feedback
|