vote up 0 vote down star

I am trying to write a library so that it is generic enough that its useful. The problem is that it needs to update properties of other classes, both the property and class should be dynamic.

Now I can do it using public variables no problem, I just pass a pointer to the variable I want to update. However it would also be incredibly useful to set properties of classes as well, since they are used so liberally in objective C.

Now again this isn't a problem as long as the property is an object type, trying to set primitive type properties.

My current code looks something along these lines for properties:

NSInvocation* invoc = [NSInvocation invocationWithMethodSignature:[[myInstance class] instanceMethodSignatureForSelector:mySelector]];
[invoc setTarget:myInstance];
[invoc setSelector:mySelector];
[invoc setArgument:&myObject atIndex:2];
[invoc invoke];

However the setArgument method only allows for pointer types, yet properties are allowed to have any primitive type. Is there any way of dynamically assigning primitive type properties?

flag

1 Answer

vote up 1 vote down check

KVO should do the conversion for you:

[object setValue:[NSNumber numberWithInt:i] forKey:@"myVar"];

will convert the NSNumber to an int if your myVar is defined as:

int myVar;
...
@propery (nonatomic) int myVar;
link|flag
That's perfect. I never noticed the NSObject setValue:forKey: method Thank you :) – Matthew Lloyd Jun 23 at 13:06

Your Answer

Get an OpenID
or

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