Hello,
I have an object in objective-c at runtime, from which I only know the KVC key and I need to detect the return value type (e.g. I need to know if its an NSArray or NSMutableArray) of this property, how can I do that?
|
2
|
Hello, I have an object in objective-c at runtime, from which I only know the KVC key and I need to detect the return value type (e.g. I need to know if its an NSArray or NSMutableArray) of this property, how can I do that?
|
||||
|
|
|
You're talking about runtime property introspection, which happens to be something that Objective-C is very good at. In the case you describe, I'm assuming you have a class like this:
Which gets encoded in XML something like this:
From this information, you want to recreate the class and also give it an appropriate value for Here's how it might look:
Apple's documentation (linked above) has all of the dirty details about what you can expect to see in |
||||||||||||
|
|
|
You can use isKindOfClass message
|
||||||||||
|
|
|
The preferred way is to use the methods defined in the NSObject Protocol. Specifically, to determine if something is either an instance of a class or of a subclass of that class, you use So, for your case, you'd want to do something like this:
|
||||||||
|
|
|
Cheap answer: use the NSObject+Properties source here. It implements the same methodology described above. |
||
|
|