how to override a property synthesized getter?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Inside of your property definition you can specify getter and setter methods as follows:
You can specify the getter only, the setter only, or both. |
|||||
|
|
Just implement the method manually, for example:
The compiler will then not generate a getter method. |
|||||||||||||||||||
|
|
Just implement your own getter and the compiler will not generate one. The same goes for setter. For example:
is equivalent to:
|
||||
|
|
