import UIKit
class FirstViewController: UIViewController {
@IBOutlet weak var text: UITextField!
@IBOutlet weak var btn: UIButton!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
btn.addTarget(self, action: #selector(btnClick(_ :)), for: .touchUpInside)
//响应输入框的编辑事件(allEditingEvents)就可以获取最新的内容。
text.addTarget(self, action: #selector(textchange(_ :)), for: .allEditingEvents)
}
func btnClick(_ btn:UIButton) {
print("111111")
}
func textchange(_ text:UITextField) {
self.btn.isEnabled = (text.text?.characters.count)!>0
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
/*
// MARK: - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
// Get the new view controller using segue.destinationViewController.
// Pass the selected object to the new view controller.
}
*/
}
文本输入框内容改变时响应,并获取最新内容
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- “妹子,你是做什么工作的呀?” 每次回家碰见三姑六婆,亲朋好友,总会问起这个问题。而我为了省事,通常都会回答: “...