I load a UIImageView
with an image depending on user interaction. When the parent view is initially displayed, no image has been selected and the imageview is blac
I had a similar problem with the UIImageView on my UIButton, where I had set the image using
[button setImage:image forState:UIControlStateNormal];
Setting it to nil would remove the image, but calling the getter again reset the image. I fixed it with:
[button setImage:nil forState:UIControlStateNormal];
instead of
[button.imageView.image = nil];