vote up 2 vote down star
1

Is it possible to get a list of all descendant classes of a particular class in objective-c?

Something like:

@interface A : NSObject @end

@interface B : A @end

@interface C : A @end

NSArray *descendants = [A allDescendants]; // descendants = [B, C]

flag

4 Answers

vote up 3 vote down

The only way I can think is to enumerate the entire list of classes in the runtime (obtained with objc_getClassList) and test each one for isKindOfClass:A.

This is likely the only solution because classes do not maintain links to their descendants (only to their superclass).

link|flag
vote up 0 vote down

Matt,

I understand what you're saying, and this is true in Java too, but at least in Java you can go through ALL classes in the classpath and compare to see if each one of them implement the given class/interface (via reflection). Can't you do this in objective-c land too?

link|flag
vote up 0 vote down

Could you use the class member somehow? Calling [[A class] superclass] returns an instance of the Class class for self's superclass. I think that you can get the name of a class from its Class - would that do what you want?

This doesn't really handle Protocols at all, but maybe this will point you in the right direction at least.

link|flag
vote up 1 vote down

As an example I am linking to solution by Ken Ferry to a Wil Shipley blog post.

Essentially, walking the classes.

link|flag

Your Answer

Get an OpenID
or

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