How can I set up a background image to UITextView?
UITextView
For tiled background i like this solution
UIImage *patternImage = [UIImage imageNamed:@"image.png"]; UIColor* color = [UIColor colorWithPatternImage:patternImage]; textView.backgroundColor = color;