How can I find out the type of a NSDictionary element?
|
3
|
|
|
|
|
|
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
|
|||
|
|
