Can I not do this in objective c?
@interface Foo : NSObject {
int apple;
int banana;
}
@property int fruitCount;
@end
@implementation Foo
@synthesize fruitCount; //without this compiler errors when trying to access fruitCount
-(int)getFruitCount {
return apple + banana;
}
-(void)setFruitCount:(int)value {
apple = value / 2;
banana = value / 2;
}
@end
I am using the class like this:
Foo *foo = [[Foo alloc] init];
foo.fruitCount = 7;
However my getter and setter's are not getting called. If I instead write:
@property (getter=getFruitCount, setter=setFruitCount:) int fruitCount;
My getter gets called however the setter still doesn't get called. What am I missing?
Thanks,
