How to check text field input at real time?

前端 未结 7 1661
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:41

    Use UITextFieldDelegate. especially this function

    - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
    

    and you can get sample codes links from here..

提交回复
热议问题