vote up 1 vote down star

I want to access a UIImage programmatically... i.e. myImage.hidden = TRUE; etc. I can do this fine for UILabel but when I repeat the process for UIImage it doesn't work. Specifically when I drag the blue line in Interface Builder over the icon I don't get a popup menu like I do when using UILabel.

Perhaps using UIImageView instead of UIImage?

Thanks!

flag

1 Answer

vote up 4 vote down check

An UIImage is not a view that can be added via Interface Builder. In order to display a UIImage you either need to override the drawRect method of whatever view you want to display it in, or use a UIImageView.

Using a UIImageView will allow you to set it as an IBOutlet and reference it in your controller.

link|flag
this worked. simply change UIImage to UIImageView. – MrDatabase Oct 6 '08 at 21:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.