Possible Duplicate:
About the keyword ofself
Why isselfallowed in static context in objective c
what type of object is the self object in a class method?
Example:
+ (void)test {
NSLog(@"class self: %@", self);
}
Is the self object in a class method a fully initialized object of the class or only a class wrapper object for the important meta data ?
Best Regards
selfin class method has typeClassand points to the class object. You can send messages to it just like you send them to the class: