9

我想将我的 UItextview 的颜色设置为透明但不完全透明。我想要一点点灰色或黑色的背景,就像图片一样

在此处输入图像描述

我现在正在使用此代码

 _textView.backgroundColor = [UIColor clearColor];

我怎样才能使它像上图一样透明?任何示例代码?

4

2 回答 2

6

你应该使用这样的东西:

_textView.backgroundColor = [UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:0.5];

其中 alpha - 透明参数(例如 50%)。

于 2012-06-17T10:46:04.383 回答
4

这是做你想做的吗?(您可能需要对这些值进行试验)。

_textView.backgroundColor = [UIColor colorWithWhite:0.5 alpha:0.5];
于 2012-06-17T10:46:48.703 回答