我创建了一个按钮图像,并使用Sa wift将其放置在UITextField“密码”的rightView上。我想在密码字段中创建切换按钮隐藏/显示安全文本。图像显示在右视图上。
代码:
func passwordToggleButton(){
let button = UIButton(type: .custom)
button.setImage(UIImage(named: "hidePassword"), for: .normal)
button.imageEdgeInsets = UIEdgeInsets(top: 0, left: -16, bottom: 0, right: 0)
button.frame = CGRect(x: CGFloat(txtfPassword.frame.size.width - 25), y: CGFloat(5), width: CGFloat(25), height: CGFloat(25))
button.backgroundColor = UIColor.white
button.addTarget(self, action: #selector(self.togglePassword), for: .touchUpInside)
txtfPassword.rightView = button
txtfPassword.rightViewMode = .always
}
图片
答案 0 :(得分:1)
由于您将其放入“ rightView”中。
框架的X和Y坐标相对于它。
所以您应该将它们更改为0,0