Created
September 26, 2013 03:07
-
-
Save billinghamj/6709374 to your computer and use it in GitHub Desktop.
More Obj-C like version of an SO answer - http://stackoverflow.com/a/4251473/743957
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <objc/runtime.h> | |
- (BOOL) class:(Class)classA descendsFromClass:(Class)classB | |
{ | |
while (1) | |
{ | |
if (classA == classB) return true; | |
id superClass = class_getSuperclass(classA); | |
if (classA == superClass) return (superClass == classB); | |
classA = superClass; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment