how to override a property synthesized getter?
Just implement the method manually, for example:
- (BOOL)myBoolProperty { // do something else ... return myBoolProperty; }
The compiler will then not generate a getter method.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With