I want to perform additional tasks when a UIImageView image is specified. I am trying to define my own customization method, but no luck.
h:
@property (nonatomic, strong, setter = setImage:) UIImage *image;
t
- (void)setImage:(UIImage *)image {
self.image = image;
}
This obviously carries an endless cycle. How to do it?
source
share