是否可以在objective-c中获取特定类的所有后代类的列表?
就像是:
@interface A : NSObject
@end
@interface B : A
@end
@interface C : A
@end
NSArray *descendants = [A allDescendants]; // descendants = [B, C]
是否可以在objective-c中获取特定类的所有后代类的列表?
就像是:
@interface A : NSObject
@end
@interface B : A
@end
@interface C : A
@end
NSArray *descendants = [A allDescendants]; // descendants = [B, C]