views:

58

answers:

1

How do you bring an Image View below a Text View on the iPad?

Somehow I have an Image View on top of a Text View and you can't see the text!

+1  A: 

If you are using the Interface Builder, go to the Document window (the view hierachy) and drag the text view below the image view.

In code, use the -bringSubviewToFront: method.

KennyTM