vote up 1 vote down star
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?

flag

Where does the information in your XML file come from? Would it be possible to add an entry to indicate the type of each property? – eJames Apr 20 at 18:52
The xml file is also out of my control. I'm creating an xml serializer which converts an xml file in an object structure. Of course, the objects have to be available, but I need sertain information about the object at runtime to fill in the data correctly. – Enyra Apr 20 at 19:19

4 Answers

vote up 3 vote down check

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:

@interface MyClass
{
    NSArray * stuff;
}
@property (retain) NSArray * stuff;
@end

Which gets encoded in XML something like this:

<class>
    <name>MyClass</name>
    <key>stuff</key>
</class>

From this information, you want to recreate the class and also give it an appropriate value for stuff.

Here's how it might look:

#import <objc/runtime.h>

// ...

Class objectClass;       // read from XML (equal to MyClass)
NSString * accessorKey;  // read from XML (equals @"stuff")

objc_property_t theProperty =
    class_getProperty(objectClass, [accessorKey UTF8String]);

const char * propertyAttrs = property_getAttributes(theProperty);
// at this point, propertyAttrs is equal to: T@"NSArray",&,Vstuff
// thanks to Jason Coco for providing the correct string

// ... code to assign the property based on this information

Apple's documentation (linked above) has all of the dirty details about what you can expect to see in propertyAttrs.

link|flag
1  
Actually, it would be equal to T@"NSArray",&,Vstuff ;-) – Jason Coco Apr 21 at 0:36
Thank you, you are absolutely right. I've made the change – eJames Apr 21 at 1:45
Thanks, this seems to be the best way, I'm going to try it. Btw. your example is quite near to what I'm doing, but it can be any xml file, so my key is the element name. – Enyra Apr 21 at 8:11
How can I produce this @"NSArray" type string with @encode()? I tried @enocde(NSArray *) an dit did not work. – Enyra Apr 23 at 20:17
I'm not sure if you can do that with @encode. Your best bet is to ask another question here on SO :) – eJames Apr 23 at 21:31
show 1 more comment
vote up 1 vote down

You can use isKindOfClass message

if([something isKindOfClass:[NSArray class]])
     [somethingElse action];
link|flag
the problem is, the object is newly created, so also the property value is nil. I just have a KVC Key, from which I event don't know if the object really has this accessors, but if it has it, I need to know the type of this return value without having the according object in hand. – Enyra Apr 20 at 17:44
Why not to make your logic decision later when you will have an object? Objective C is more runtime language then static. – Mykola Golubyev Apr 20 at 17:47
@Enyra: that's okay. Using the above, if the object is nil, it will return false even if it is eventually going to be an array. – Jason Coco Apr 20 at 17:47
[myObject valueForKey:@"theKnownKey"] is nil for sure, so i can make following: [[myObject valueForKey:@"theKnownKey"] isKindOf:[NSArray class]] ? – Enyra Apr 20 at 17:50
@Mykola: I'm reading an xml file and filling it into objects of classes I don't know during runtime, when I fill in the property value of the class, I need to check if I can fill in the new value / object directly into the property, or if I have to create an array and fill in the object into the array, so I can not wait until I have an object value :) – Enyra Apr 20 at 17:58
show 4 more comments
vote up 2 vote down

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 -isKindOfClass:. To determine if something is an instance of a particular class, and only that class (ie: not a subclass), use -isMemberOfClass:

So, for your case, you'd want to do something like this:

// Using -isKindOfClass since NSMutableArray subclasses should probably
// be handled by the NSMutableArray code, not the NSArray code
if ([anObject isKindOfClass:[NSMutableArray class]]) {
    // Stuff for NSMutableArray here
} else if ([anObject isKindOfClass:[NSArray class]]) {
    // Stuff for NSArray here

    // If you know for certain that anObject can only be
    // an NSArray or NSMutableArray, you could of course
    // just make this an else statement.
}
link|flag
1  
In Enyra case 'anObject' is nil. Look comments in my respond. – Mykola Golubyev Apr 20 at 22:56
1  
This test will not work. All arrays — even immutable ones — are descended from NSMutableArray. – Chuck Apr 21 at 0:27
vote up 2 vote down

Cheap answer: use the NSObject+Properties source here.

It implements the same methodology described above.

link|flag

Your Answer

Get an OpenID
or

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