I want to call the web api when uitextfield text changed.problem is,if i type text fast ex "abcd" it call the api four times.I want to handle the api call,if i type fast then is should call the api one time with hole string.If i type slowly then its ok.normally we type fast then it call the api many times its a problem.
any one have idea for this
- (IBAction)editTextField:(id)sender {
[self callapiwithtype_text];
}