简体   繁体   English

UITextView在ios中添加背景图像

[英]UITextView add background image in ios

I am trying for add image as background of UITextview 我正在尝试将图像添加为UITextview的背景

 textView.backgroundColor = UIColor(patternImage: UIImage(named: "Background")!)

Output is :- 输出是:-

在此处输入图片说明

Textview not display single image ? Textview不显示单个图像?

You need to set image in layer of textView instead of setting backgroundColor with UIColor(patternImage:) . 您需要设置图像layertextView ,而不是设定backgroundColorUIColor(patternImage:) So set image this way. 因此,以这种方式设置图像。

 textView.layer.contents = UIImage(named: "Background")!.cgImage

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM