Knowing the complete changed string in textField:shouldChangeCharactersInRange:replacementString:

北城余情 提交于 2019-12-02 20:12:59
NSString * proposedNewString = [[textField text] stringByReplacingCharactersInRange:range withString:replacementString];

Swift Version

In Swift We need to cast textField's text to NSString. The following can be useful:

let newString = (textField.text! as NSString).replacingCharacters(in: range, with: string)
-(BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
    NSString * searchStr = [textField.text stringByReplacingCharactersInRange:range withString:string];

//    [textField2 setText:[textField1.text stringByReplacingCharactersInRange:range withString:string]];
    NSLog(@"%@",searchStr);
    return YES;
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!