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?
Change background color, and use opacity slider to make it fully transparent.
Programmatically:
textView.backgroundColor = [UIColor clearColor];