Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm having a object MyObject setup like this


@interface MyObject : NSObject {
    int time;
}
@property (nonatomic, assign) int time;
@end

I'm trying to use KVC to set the value and my code looks like this:


MyObject* obj = [MyObject alloc] init];

int val = 2;
NSValue* nsvalue = [NSValue valueWithBytes:&val objCType:@encode(int)];
[obj setValue:nsvalue forKey:@"time"];   // here I get the exception

When I run this code, I get an exception like this:


-[NSConcreteValue intValue]: unrecognized selector sent to instance 0x6e0f670

I've tried with other data types (float) and get the same exception. I've also tried to get the value using valueForKey and that works well.

Any ideas?

share|improve this question

1 Answer

up vote 0 down vote accepted

- setValue:forKey:'s value not means NSValue here. You should box the scalar int into NSNumber but not NSValue. See https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/KeyValueCoding/Articles/DataTypes.html#//apple_ref/doc/uid/20002171-BAJEAIEE

share|improve this answer
Thanks. I just discovered that too by trial and error, but you were faster with an answer here :) – Andrei Stanescu Feb 17 '12 at 9:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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