tags:

views:

126

answers:

2

Hi, just a quick one:

How do I make a UITextView transparent? I built the view in Interface Builder and placed a UITextView into it and it covers the background.

Any ideas?

+4  A: 

Change background color, and use opacity slider to make it fully transparent.

Programmatically:

textView.backgroundColor = [UIColor clearColor];
mvds
thanks for your help!
Matthew Pateman
If you liked his answer, accept it by pressing the check mark.
UltimateBrent
A: 

If you are in the Interface Builder: Press cmd+1 to get to the Attributes Instructor pane

Scroll down to the section "View" And click at Background the two Arrows - there u can choose now between several kinds of colorization. In this case "Clear Color"