Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I make it so that when the contents of a text field changes, a function is called?

share|improve this question

2 Answers

up vote 25 down vote accepted
[myTextField addTarget:self action:@selector(textFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
share|improve this answer
2  
Weird, based on UIControlEventDidEnd & UIControlEventDidBegin, one would assume that it was UIControlEventValueChanged... What exactly does UIControlEventValueChanged do then? – Jarrod Feb 22 '12 at 0:01

Actually, there is no value changed event for UITextField, use UIControlEventEditingChanged

share|improve this answer
I thought I would post it here for new people to see – Dmitry Shevchenko Jan 26 at 23:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.