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
You can also check run time. Put one breakpoint in code and inside (lldb) console write
(lldb) po [yourObject class]
Like this..