how to add undelete texts to textfield in ios

Solutions on MaxInterview for how to add undelete texts to textfield in ios by the best coders in the world

showing results for - "how to add undelete texts to textfield in ios"
Clotilde
26 Mar 2020
1- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
2{
3    if (textField.text.length == 1 && [string isEqualToString:@""]) {//When detect backspace when have one character. 
4        textField.text = @"myText";
5    }
6    return YES;
7}
similar questions