在TextView后面添加背景图片
嘿伙计们, 有谁知道如何使文本视图透明并在文本视图后面添加背景图像?谢谢
Hey guys,
Does anyone know how to make the Text View transparent and add a Background Image behind the Text View? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 viewDidLoad 中
In viewDidLoad
尝试创建一个新类。 (没有测试代码,只是在论坛上输入的,尝试使用代码否则:使用概念)
Try to make a new class. (Did not test the code, just typed it on the forum, try to use the code otherwise: use the concept)
UIViews(UITextView 是其子类)有一个名为backgroundColor 的属性。
尝试在 TextView 上调用 [textView setBackgroundColor:[UIColor clearColor]] 并在其后面放置一个图像视图。
UIViews (of which UITextView is a subclass) have a property called backgroundColor.
Try calling [textView setBackgroundColor:[UIColor clearColor]] on the TextView and putting an image view behind it.