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!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
To test if object is an instance of class a:
or
To get object's class name you can use
|
|||||||||||||||||||
|
|
you can use
on a NSObject |
|||||||||
|
|
You also can use
on any NSObject |
|||||
|