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?