How can i use a custom setter for the following property after I synthesized it ?
@property (nonatomic,retain) UIButton *but
|
How can i use a custom setter for the following property after I synthesized it ?
|
|||
|
|
|
|||
|
|
@Sascha is almost right but his code has a tiny bug in it ;) It would look like either : A)
or B)
(A) is (very) slightly more efficient, (B) is more readable. Why do we need the if statement in option (A) instead of just the release & retain in @Sascha's answer? What happens if you pass in the same object twice? i.e.
If we didn't check that NB We don't need the if statement in option (B) because autorelease won't immediately release the button so we have time to retain it again without it being dealloc'd. |
|||
|
|
|
Implement
It should probably look something like
|
|||
|
|
|
A B+) alternative to deanWombourne solutions:
This solution will prevent issues where value is a sub-object of but. An A+) alternative to deanWombourne solutions:
This solution will prevent issues where value is a sub-object of but.
And it will allow you to add a |
|||
|
|