At some point in my code I set UIImageView * imageView.image to UIImage * myImage. From this point I would love to view changes of myImage in imageView.
On any myImage change, I want to imageView to show myImage. Hope you understand. Thank you.
-- Edit 1 for better explanation.
At some point in code, i set imageView's image to myClass.image. And from this point I want to imageView react on any change of myClass.image. For example myClass.image = [UIImage imageNamed:@"foo"];. Both imageView and myClass.image are properties with retain. Now, when I change the myClass.image, I also have to set imageView.image = myClass.image to see new image in image view.