为什么文本字段边缘被剪切?

时间:2017-10-04 07:28:25

标签: ios swift uitextfield

当我设置角落的极端属性时,UITextfield的边缘会在所有角落被剪裁。 有人知道为什么会这样吗? 感谢!!!

我的代码:

#fixedbutton {
    position: fixed;
    bottom: 0px;
    right: 0px; 
}

结果: enter image description here

我希望实现这一目标:enter image description here

2 个答案:

答案 0 :(得分:1)

尝试将边框样式设置为无,并使用图层绘制边框:

    fullNameTextField.borderStyle = .none
    fullNameTextField.layer.borderColor = UIColor.gray.cgColor
    fullNameTextField.layer.borderWidth = 1.0
    fullNameTextField.layer.cornerRadius = fullNameTextField.frame.size.height / 2

答案 1 :(得分:0)

是的伙伴,因为你的文字字段包含boder风格。在界面构建器中选择您的文本字段,如果您需要边框,请选择圆形的boder样式。附加图像看看,您可以从故事板中修复它:)

here is the image