New to iOS development. Need help regarding UITextField delegate methods.
my problem is I have UITextField
if i enter some “XYZ” text in textfield it should display some other text like which i want while i’m editing only it should done.
- (void)textFieldDidBeginEditing:(UITextField *)textField
{
[self.requestTextFiled setReturnKeyType:UIReturnKeyDone];
[NSTimer scheduledTimerWithTimeInterval:.1 target:nil selector:@selector(checkingTheQuestion) userInfo:nil repeats:YES];
}
-(void)checkingTheQuestion
{
}
I tried if by call checkingTheQuestion but I’m not able to do.
Please Help me.
Thanks in advance.
is the method for you. You can use it as :
This method is called when you type any character on keypad.