默认情况下,UITextField的边框颜色为浅灰色。
我想将我的UITextView设置为与UITextField相同的边框颜色。

我试过了:

myTextView.layer.borderColor = UIColor.lightGrayColor().CGColor
or
myTextView.layer.borderColor = UIColor.lightTextColor().CGColor
or
myTextView.layer.borderColor = myTextField.layer.borderColor

它们仍然具有不同的颜色。
您能告诉我如何查看UITextView边框以匹配UITextField颜色吗?

谢谢你。

最佳答案

试试这个代码。

UIColor *borderColor = [UIColor colorWithRed:204.0/255.0 green:204.0/255.0 blue:204.0/255.0 alpha:1.0];

myTextView.layer.borderColor = borderColor.CGColor;
myTextView.layer.borderWidth = 1.0;
myTextView.layer.cornerRadius = 5.0;

更改borderWidth和cornerRadius值以获取确切的ui作为UITextField。

关于ios - 如何将UITextView的边框设置为与UITextField的边框颜色相同,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25962449/

10-10 12:25