How can I set up a background image to UITextView?
Just one clarification, when trying out answer #9 from @oxigen, I found out that this line:
UIImageView *imgView = [[UIImageView alloc]initWithFrame: textView.frame];
Is relative to the textView.frame. So your x and y values need to be 0,0 if you want it to overlap completely which means you want something like:
UIImageView *imgView = [[UIImageView alloc]initWithFrame:textView.bounds];