I\'m working in Objective-C on the iPhone and need to know whether a \'Class\' inherits from \'NSObject\'.
I tried checking if it responds to an NSObject selector:>
The class 'Class' does not inherit from NSObject. That means methods defined by NSObject (such as isKindOfClass or respondsToSelector) cannot be used on it.
isKindOfClass
respondsToSelector
What are you trying to do with it in the first place?