So I have a Class object, say for class ‘D’. Is there a way to figure out if that class object is a subclass of another Class object, say ‘B’? I tried -isKindOfClass: and isMemberOfClass, but neither worked. Thanks!
So I have a Class object, say for class ‘D’. Is there a way
Share
You should use class method +isSubclassOfClass.