在我的1)UIView
一(2)UIImageView
将在此(3)UITextView
上。
此UITextView
必须是透明的,我们必须查看imageView
。
我该怎么做?
答案 0 :(得分:23)
如果你只想让背景(而不是整个UITextView)透明,我相信你应该通过它继承自UIView的backgroundColor属性来做到这一点。
就这样......
[yourTextView setBackgroundColor:[UIColor clearColor]];
......应该有希望做到这一点。
但是,如果你想让整个 UITextView透明,那么alpha属性@taskinoor提到是完美的。
答案 1 :(得分:9)
您可以将文本视图的alpha设置为任意值。
myTextView.alpha = 0.5; // 50% transparent
答案 2 :(得分:7)
然后,你完成了(如果我理解正确的话,你不必处理任何代码)!
答案 3 :(得分:6)
我用这种方式:
[textField setBackgroundColor:[UIColor clearColor]]; //clear background
[textField setBorderStyle:UITextBorderStyleNone]; //clear borders
答案 4 :(得分:1)
快捷键4
对于Swift 4,请使用以下代码:
yourTextView.backgroundColor = UIColor.clear