本文介绍了透明的UITextView的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何让UITextView透明化?我在Interface Builder中构建了视图,并在其中放置了一个UITextView,它覆盖了背景。

How do I make a UITextView transparent? I built the view in Interface Builder and placed a UITextView into it and it covers the background.

任何想法?

推荐答案

更改背景颜色,并使用不透明度滑块使其完全透明。

Change background color, and use opacity slider to make it fully transparent.

以编程方式:

textView.backgroundColor = [UIColor clearColor];

这篇关于透明的UITextView的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 19:29