Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I test whether an object is an instance of a particular class in objective c? Let's say I want to see if object a is an instance of class b, or class c, how do I go about doing it? Thanks!

share|improve this question
3  
The header of this post asks for something different than the post itself. I got here looking for how to get a class name, not how to compare two classes. – Blazej Czapp Dec 10 '12 at 21:19
You need to know the class (name) before you can compare the two classes, hence this question. Looks like that's what many people want this for, anyway. – futureelite7 Jan 29 at 5:39
A class name is not the same as the Class proper. The former is a string, either in your editor or in a string at runtime, the latter is an instance of the opaque Class type. – Slipp D. Thompson Apr 20 at 7:33

3 Answers

up vote 158 down vote accepted

To test if object is an instance of class a:

[yourObject isKindOfClass:[a class]]
// Returns a Boolean value that indicates whether the receiver is an instance of 
// given class or an instance of any class that inherits from that class.

or

[yourObject isMemberOfClass:[a class]]
// Returns a Boolean value that indicates whether the receiver is an instance of a 
// given class.

To get object's class name you can use

#import <objc/runtime.h>

/* ... */

const char* className = class_getName([yourObject class]);
NSLog(@"yourObject is a: %s", className);
share|improve this answer
53  
don't forget to #import <objc/runtime.h> for class_getName() – Ovesh Feb 2 '11 at 12:32
5  
There is also a class method for this. – afEkenholm Feb 8 '11 at 16:53
3  
My understanding is that this only works for objects that inherit NSObject. – Henrik P. Hessel Jul 9 '11 at 19:39
@Henrik P.: or objects that conform to the NSObject protocol – user102008 Jul 22 '11 at 0:52
1  
@afEkenholm - but not on iOS 4.x, just so we know. – JJ Rohrer Oct 7 '11 at 14:40
show 4 more comments

you can use

NSString *className = NSStringFromClass([myObject class]); 

on a NSObject

share|improve this answer
19  
Please don't use -className. It's API for use with scripting, see: <a href="developer.apple.com/mac/library/documentation/cocoa/reference/…; title="NSObject Documentation">NSObject docs</a> The correct way to do this is: NSString *className = NSStringFromClass([myObject class]); – Jonathan Dann Jan 13 '10 at 20:48
thanks, correct! – Henrik P. Hessel Jan 13 '10 at 20:59
That is not an answer to the question asked. – dmitri May 1 at 22:41

You also can use

NSString *className = [[myObject class] description]; 

on any NSObject

share|improve this answer
2  
This may or may not work based on whether the programmer has overridden the description method. Using [object class] or NSStringFromClass always returns the class name, though. – futureelite7 Jan 8 at 1:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.