You cannot verify this from Interface Builder.
Try something like this. After the textField initialization, put the Value Changed handler as follows:
[textField addTarget:self action:@selector(validateField:) forControlEvents:UIControlEventEditingChanged ];
Then write the message as follows:
- validateField:(id)sender {
source share