Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how to override a property synthesized getter?

share|improve this question
2  
This is neither iPhone or iOS specific. It isn't even specific to any platform or framework. – rightfold Feb 20 '11 at 10:06

3 Answers

up vote 20 down vote accepted

Inside of your property definition you can specify getter and setter methods as follows:

@property (nonatomic, retain, getter = getterMethodName, setter = setterMethodName) NSString *someString;

You can specify the getter only, the setter only, or both.

share|improve this answer
How to specify getter only / setter only? – Pedro Morte Rolo Jan 2 at 11:11
In my Xcode project I do not need to @synthesize someString, in this case how can I set its value? Xcode error says that is an undeclared property.. Thx – Mr. Frank May 16 at 15:20

Just implement the method manually, for example:

- (BOOL)myBoolProperty
{
    // do something else
    ...
    return myBoolProperty;
}

The compiler will then not generate a getter method.

share|improve this answer
8  
Note that if your @property is atomic (the default), you cannot correctly mix an @synthesized getter/setter with a manually written getter/setter. – bbum Feb 18 '11 at 23:26
That's what I was afraid of. – Simone D'Amico Feb 18 '11 at 23:32
6  
Afraid of what? atomic isn't that useful; it does nothing to guarantee data integrity in a threaded application. It just prevents an app from crashing due to an obvious race condition. If you are relying on atomic heavily, you are almost assuredly doing it wrong... :) – bbum Feb 19 '11 at 1:13
1  
@bbum: could you elaborate on what you mean by "you cannot correctly mix a synthesized getter/setter with a manually written getter/setter" when the property is atomic? I don't understand what one has to do with the other. Thanks. – Ole Begemann Feb 19 '11 at 1:56
5  
Sure; stackoverflow.com/questions/588866/… may be helpful. Specifically, since the locking mechanism to implement atomic is not exposed, there is no way you can manually implement just the setter or just the getter and ensure atomicity with an @synthesized atomic setter/getter. – bbum Feb 19 '11 at 4:13
show 1 more comment

Just implement your own getter and the compiler will not generate one. The same goes for setter.

For example:

@property float value;

is equivalent to:

- (float)value;
- (void)setValue:(float)newValue;
share|improve this answer

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.