In Objective-C, you can invoke class methods with:
[MyClass aClassMethod];
And you can query an instance\'s kind with:
[som
MyClass is not of type Class.
MyClass
Class
[MyClass class] is of type Class.
[MyClass class]
If you are familiar with Java, the concept is the same.
java.lang.String is not of type java.lang.Class
java.lang.String
java.lang.Class
java.lang.String.getClass() is of type java.lang.Class
java.lang.String.getClass()