- Determine whether an objective-C object is an instance of a class: [obj isMemberOfClass:ColorClass]; - Determine whether an objective-C object is an instance of a class or its descendants: [obj isKindOfClass:ColorClass]; - The version of a class: [ColorString version] - Find the class of an Objective-C object: Class myClass1 = [obj1 class]; Class myClass1 = [NSString class]; - Verify 2 Objective-C objects are of the same class: [obj1 myClass2] == [obj2 class]
- Determine whether an objective-C object is an instance of a class:
[obj isMemberOfClass:ColorClass];
- Determine whether an objective-C object is an instance of a class or its descendants:
[obj isKindOfClass:ColorClass];
- The version of a class:
[ColorString version]
- Find the class of an Objective-C object:
Class myClass1 = [obj1 class];
Class myClass1 = [NSString class];
- Verify 2 Objective-C objects are of the same class:
[obj1 myClass2] == [obj2 class]