Is there a way to obtain something like a dictionary of all key-value pairs of a class?
|
1
|
|
|
|
|
|
You'd have to roll your own using the Objective-C Runtime functions. Here's some very basic sample code. Note that getting the ivars of a class doesn't get the ivars of its superclass. You'd need to do that explicitly, but the functions are all there in the runtime.
|
||||
|
|
|
I'm not sure for just ivars but if you have them defined as properties it is possible to access the available properties on a class. I've been using SQLitePersistentObjects for a couple projects and it has some helpful code that gets the properties defined on the class to use when figuring out serialization to and from sqlite. It uses the function class_copyPropertyList to get the available list of properties on a class. More specifically:
This returns a dictionary of the properties - you'll need to do some investigating of the results you get back but you should be able to get what you need if you're using properties. |
||
|
|
|
|
Yep, totally possible:
|
||
|
|
|
|
I posted a runtime browser project here: http://x-cake.ning.com/profiles/blogs/browsing-the-objc-runtime-on |
||
|
|
