textField实现左图右文字
2017-01-16 本文已影响0人
嗯哼丶傻大个是你
let imageview = UIImageView(image: UIImage(named: "contacts"))
imageview.isUserInteractionEnabled = true
// 手势添加, showContactsList
let tapGesture = UITapGestureRecognizer(target: self, action: #selector(showGesture))
imageview.addGestureRecognizer(tapGesture)
textfield.leftView = imageview
textfield.leftViewMode = UITextFieldViewMode.unlessEditing
textfield.clearButtonMode = UITextFieldViewMode.whileEditing
func showGesture() {
}