How to check text field input at real time?

前端 未结 7 1649
Happy的楠姐
Happy的楠姐 2020-12-09 21:07

I am writing validation for my textfield, I found something interesting that whether I can check how many digits I am typing into the textfield at real time. My text field i

7条回答
  •  春和景丽
    2020-12-09 21:39

    [textField addTarget:self action:@selector(checkTextField) forControlEvents:UIControlEventEditingChanged];
    

    Try it!

提交回复
热议问题