我以这种方式向UITextField添加了底部边框:
let bottomLine = CALayer()
bottomLine.frame = CGRectMake(0.0, self.frame.height, self.frame.width, CGFloat(borderWidth))
bottomLine.backgroundColor = borderColor.CGColor
self.borderStyle = UITextBorderStyle.None
self.layer.addSublayer(bottomLine)
我得到了这个:
我想向下移动边框。为此,我以这种方式设置边框:
bottomLine.frame = CGRectMake(0.0, self.frame.height + 5, self.frame.width, CGFloat(borderWidth))
我在这里增加5px。但它超越了文本字段的框架。但我无法调整UITextField
的身高:
如果我以编程方式设置它,应用程序会挂起刷新的可设计项(我正在使用IBDesignable
的{{1}}子类。