vote up 1 vote down star
3

How can I find out the type of a NSDictionary element?

flag

1 Answer

vote up 5 vote down check

There's various sorts of introspection you can perform on any object at runtime, contained within the NSObject protocol.

http://developer.apple.com/documentation/

e.g.

You can test the class of an object at runtime by comparing it to a class object, which you can obtain by sending a class message.

BOOL test = [self isKindOfClass:[SomeClass class]];

link|flag

Your Answer

Get an OpenID
or

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