Is there a class method equivalent to -respondsToSelector:?
-respondsToSelector:
Something like +respondsToSelector:?
+respondsToSelector:
The reason I am asking is because
In Objective C, classes are also objects so you can send the object messages. In particular, you can ask -respondsToSelector: of a class. You can't send class level methods to non-class objects though.