In Objective-C, you can invoke class methods with:
[MyClass aClassMethod];
And you can query an instance\'s kind with:
[som
I'm thinking that MyClass is actually a meta-class. You send it the class message to get the actual class (of type Class).