How can I add a background image to UITextView?
|
You can have a UIImageView containing the background image and the UITextView as siblings, then in Interface Builder move the text view to overlap the image view (or add them both to the same parent view if doing it programmatically). You also have to make sure the text view is not opaque and give it a 0% opacity background. |
|||||||||
|
|
|||||||||
|
|
@durai: your image has a height limit after which white background will appear if empty background appears after it scrolls down then you can repeat the same image. this might be helpful::
|
|||||||||||||
|
|
Just one clarification, when trying out response #9 from oxigen, I found out that this line:
is relative to the textframe. So your x and y values need to be 0,0 if you want it to overlap completely which means you want something like:
|
||||
|
|
|
I found one simple method how to set background image. h file
m file
|
|||
|
|
|
For tiled background i like this solution
|
|||
|
|
|
Not sure about, but you can try the following, assuming that your background image is handled by a UIImageView: [myTextView addSubview: myImageView]; Note that you may need to change the value of the alpha/opaque properties of your UITextView. Kind Regards. |
||||
|
|
|
|||
|
|
|
The answers of 'dulcanwilcox' and 'oxigen' are both correct and they present the best way to do such thing,just and addition would be to make the background image resizable,for a better image quality,the code with the resizable capability:
This part do the trick: |
|||
|
|