In Objective-C, you can invoke class methods with:
[MyClass aClassMethod];
And you can query an instance\'s kind with:
[som
My first glance answer is because [MyClass class] return a object of type Class, and MyClass doesn't inherit from Class...